Skip to content

Commit 87bd47c

Browse files
committed
mkdirc
Signed-off-by: Cervenka Dusan <cervenka@acrios.com>
1 parent 4d9513f commit 87bd47c

File tree

15 files changed

+127
-63
lines changed

15 files changed

+127
-63
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,3 +107,7 @@ format-files-to-commit.rb
107107
language\.settings\.xml
108108
*.vsix
109109
null.d
110+
boost.7z
111+
boost*/
112+
mingw.7z
113+
mingw64/

Makefile

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,18 +71,21 @@ test-serial: $(TESTDIR)
7171
.PHONY: fresh
7272
fresh: clean all
7373

74-
define clean_fun
75-
$(warning "$(at)$(POWERSHELL) "if (Test-Path $(1)) { $(rmc) $(1) }"")
76-
$(at)$(POWERSHELL) 'if (Test-Path $(1)) { $(rmc) $(1) }'
77-
endef
74+
# define clean_fun
75+
# $(warning "$(at)$(POWERSHELL) "if (Test-Path $(1)) { $(rmc) $(1) }"")
76+
# $(at)$(POWERSHELL) 'if (Test-Path $(1)) { $(rmc) $(1) }'
77+
# endef
7878

7979
# Target to clean everything.
8080
.PHONY: clean
8181
clean::
8282
@echo "Deleting output directories..."
83-
@$(call clean_fun,Debug,)
84-
@$(call clean_fun,Release,)
85-
@$(call clean_fun,erpc_outputs,)
83+
@$(rmc) Debug Release
84+
@$(rmc) out*.*
85+
@$(rmc) erpc_outputs
86+
# @$(call clean_fun,Debug,)
87+
# @$(call clean_fun,Release,)
88+
# @$(call clean_fun,erpc_outputs,)
8689
@echo "done."
8790

8891
# Process subdirs

erpc_c/Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ include $(ERPC_ROOT)/mk/targets.mk
113113

114114
$(TARGET_LIB)(%): %
115115
@$(call printmessage,ar,Archiving, $(?F) in $(@F))
116-
$(at)mkdir -p $(dir $(@))
116+
$(at)$(mkdirc) -p $(dir $(@))
117117
$(AR) $(ARFLAGS) $@ $?
118118

119119
.PHONY: install
@@ -122,17 +122,17 @@ install: install_headers install_lib
122122
.PHONY: install_headers
123123
install_headers: $(HEADERS) | $(INC_INSTALL_DIR)
124124
@$(call printmessage,c,Installing, headers in $(INC_INSTALL_DIR))
125-
$(at)mkdir -p $(INC_INSTALL_DIR)
125+
$(at)$(mkdirc) -p $(INC_INSTALL_DIR)
126126
$(at)install $(?) $(INC_INSTALL_DIR)
127127

128128
$(INC_INSTALL_DIR):
129-
$(at)mkdir -p $(INC_INSTALL_DIR)
129+
$(at)$(mkdirc) -p $(INC_INSTALL_DIR)
130130

131131
.PHONY: install_lib
132132
install_lib: $(TARGET_LIB)
133133
@$(call printmessage,c,Installing, $(subst $(LIBS_ROOT)/,,$<) in $(LIB_INSTALL_DIR))
134-
$(at)mkdir -p $(LIB_INSTALL_DIR)
134+
$(at)$(mkdirc) -p $(LIB_INSTALL_DIR)
135135
$(at)install $(TARGET_LIB) $(LIB_INSTALL_DIR)
136136

137137
clean::
138-
$(at)rm -rf $(OBJS_ROOT)/*.cpp $(OBJS_ROOT)/*.hpp $(OBJS_ROOT)/*.c
138+
$(at)$(rmc) $(OBJS_ROOT)/*.cpp $(OBJS_ROOT)/*.hpp $(OBJS_ROOT)/*.c

erpcgen/Makefile

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,13 @@ INCLUDES += $(ERPC_ROOT) \
3737
$(ERPC_ROOT)/erpcgen/src/cpptemplate \
3838
$(ERPC_ROOT)/erpcgen/src/types \
3939
$(ERPC_ROOT)/erpc_c/infra \
40-
$(OBJS_ROOT) \
41-
$(BOOST_ROOT)/include
40+
$(OBJS_ROOT)
4241

4342
ifeq "$(is_mingw)" "1"
44-
INCLUDES += $(ERPC_ROOT)/windows \
45-
$(BOOST_ROOT)
43+
INCLUDES += $(VISUAL_STUDIO_ROOT)/ \
44+
$(BOOST_ROOT)/include/boost-$(BOOST_VERSION)
45+
else
46+
INCLUDES += $(BOOST_ROOT)/include
4647
endif
4748

4849
SOURCES += $(OBJS_ROOT)/erpcgen_parser.tab.cpp \
@@ -86,15 +87,6 @@ SOURCES += $(OBJS_ROOT)/erpcgen_parser.tab.cpp \
8687
$(OBJS_ROOT)/erpcgen/src/templates/py_coders.c \
8788
$(OBJS_ROOT)/erpcgen/src/templates/py_global_init.c
8889

89-
ifeq "$(is_mingw)" "1"
90-
SOURCES += $(ERPC_ROOT)/erpcgen/VisualStudio_v14/c_common_header.cpp \
91-
$(ERPC_ROOT)/erpcgen/VisualStudio_v14/c_client_source.cpp \
92-
$(ERPC_ROOT)/erpcgen/VisualStudio_v14/c_server_header.cpp \
93-
$(ERPC_ROOT)/erpcgen/VisualStudio_v14/c_server_source.cpp \
94-
$(ERPC_ROOT)/erpcgen/VisualStudio_v14/c_coders.cpp \
95-
$(ERPC_ROOT)/erpcgen/VisualStudio_v14/c_common_functions.cpp \
96-
$(OBJS_ROOT)/erpcgen/src/templates/c_crc.cpp
97-
else
9890
SOURCES += $(OBJS_ROOT)/erpcgen/src/templates/c_common_header.c \
9991
$(OBJS_ROOT)/erpcgen/src/templates/c_client_source.c \
10092
$(OBJS_ROOT)/erpcgen/src/templates/c_server_header.c \
@@ -109,18 +101,17 @@ SOURCES += $(OBJS_ROOT)/erpcgen/src/templates/c_common_header.c \
109101
$(OBJS_ROOT)/erpcgen/src/templates/py_interface.c \
110102
$(OBJS_ROOT)/erpcgen/src/templates/py_coders.c \
111103
$(OBJS_ROOT)/erpcgen/src/templates/py_global_init.c
112-
endif
113104

114105
OBJECT_DEP := $(OBJS_ROOT)/erpcgen_lexer.cpp
115106

116107
include $(ERPC_ROOT)/mk/targets.mk
117108

118109
ifeq "$(is_mingw)" "1"
119-
LIBRARIES += -L$(BOOST_ROOT)/stage/lib
110+
LIBRARIES += -L$(BOOST_ROOT)/lib
120111
ifeq "$(build)" "release"
121-
LIBRARIES += -lboost_system-mgw48-mt-d-1_57 -lboost_filesystem-mgw48-mt-d-1_57
112+
LIBRARIES += -lboost_system-mgw12-mt-d-x64-$(BOOST_VERSION) -lboost_filesystem-mgw12-mt-d-x64-$(BOOST_VERSION)
122113
else
123-
LIBRARIES += -lboost_system-mgw48-mt-1_57 -lboost_filesystem-mgw48-mt-1_57
114+
LIBRARIES += -lboost_system-mgw12-mt-x64-$(BOOST_VERSION) -lboost_filesystem-mgw12-mt-x64-$(BOOST_VERSION)
124115
endif
125116
else
126117
ifeq "$(is_linux)" "1"
@@ -148,6 +139,8 @@ ifeq "$(build)" "release"
148139
endif
149140
endif
150141

142+
CXXFLAGS += -DBOOST_FILESYSTEM_VERSION=4
143+
151144
# Run flex
152145
$(OBJS_ROOT)/erpcgen_lexer.cpp: $(ERPC_ROOT)/erpcgen/src/erpcgen_lexer.l $(OBJS_ROOT)/erpcgen_parser.tab.hpp | $(OBJECTS_DIRS)
153146
@$(call printmessage,orange,Generating, $(subst $(ERPC_ROOT)/,,$<))
@@ -168,8 +161,8 @@ $(OBJS_ROOT)/%.c: $(ERPC_ROOT)/%.template
168161
.PHONY: install
169162
install: $(MAKE_TARGET)
170163
@$(call printmessage,c,Installing, erpcgen in $(BIN_INSTALL_DIR))
171-
$(at)mkdir -p $(BIN_INSTALL_DIR)
164+
$(at)$(mkdirc) -p $(BIN_INSTALL_DIR)
172165
$(at)install $(MAKE_TARGET) $(BIN_INSTALL_DIR)
173166

174167
clean::
175-
$(at)rm -rf $(OBJS_ROOT)/*.cpp $(OBJS_ROOT)/*.hpp $(OBJS_ROOT)/*.c
168+
$(at)$(rmc) $(OBJS_ROOT)/*.cpp $(OBJS_ROOT)/*.hpp $(OBJS_ROOT)/*.c

erpcgen/VisualStudio_v14/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ win_bison.exe
2929
win_flex.exe
3030
README.txt
3131
.vs
32+
changelog.md
33+
README.md
3234

3335
#boost libraries
3436
boost_*

erpcgen/VisualStudio_v14/erpcgen.vcxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup Label="ProjectConfigurations">
44
<ProjectConfiguration Include="Debug|Win32">
@@ -32,7 +32,7 @@
3232
</PropertyGroup>
3333
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
3434
<ImportGroup Label="ExtensionSettings">
35-
<Import Project="custom_build_rules\win_flex_bison_custom_build.props" />
35+
<Import Project="custom_build_rules\win_flex_bison\win_flex_bison_custom_build.props" />
3636
</ImportGroup>
3737
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
3838
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
@@ -61,7 +61,7 @@
6161
<WarningLevel>Level3</WarningLevel>
6262
<Optimization>Disabled</Optimization>
6363
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
64-
<AdditionalIncludeDirectories>$(ProjectDir)\boost_1_67_0;$(ProjectDir);$(ProjectDir)\..\src\types;$(ProjectDir)\..\src;$(ProjectDir)\..\src\cpptemplate;$(ProjectDir)\..\src\common;$(ProjectDir)\..\..\erpc_c\infra;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
64+
<AdditionalIncludeDirectories>$(ProjectDir)\boost_1_81_0;$(ProjectDir);$(ProjectDir)\..\src\types;$(ProjectDir)\..\src;$(ProjectDir)\..\src\cpptemplate;$(ProjectDir)\..\src\common;$(ProjectDir)\..\..\erpc_c\infra;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
6565
<RuntimeTypeInfo>true</RuntimeTypeInfo>
6666
<BrowseInformation>true</BrowseInformation>
6767
<MultiProcessorCompilation>false</MultiProcessorCompilation>
@@ -72,7 +72,7 @@
7272
<Link>
7373
<SubSystem>Console</SubSystem>
7474
<GenerateDebugInformation>true</GenerateDebugInformation>
75-
<AdditionalLibraryDirectories>$(ProjectDir)\boost_1_67_0\lib32-msvc-14.1;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
75+
<AdditionalLibraryDirectories>$(ProjectDir)\boost_1_81_0\lib32-msvc-14.1;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
7676
</Link>
7777
<Bison>
7878
<OutputFile>$(ProjectDir)\%(Filename).tab.cpp</OutputFile>
@@ -120,7 +120,7 @@ python.exe ..\bin\txt_to_c.py --output .\py_global_init.cpp ..\src\templates\py_
120120
<FunctionLevelLinking>true</FunctionLevelLinking>
121121
<IntrinsicFunctions>true</IntrinsicFunctions>
122122
<PreprocessorDefinitions>WIN32;_RELEASE;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
123-
<AdditionalIncludeDirectories>$(ProjectDir)\boost_1_67_0;$(ProjectDir);$(ProjectDir)\..\src\types;$(ProjectDir)\..\src;$(ProjectDir)\..\src\cpptemplate;$(ProjectDir)\..\src\common;$(ProjectDir)\..\..\erpc_c\infra;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
123+
<AdditionalIncludeDirectories>$(ProjectDir)\boost_1_81_0;$(ProjectDir);$(ProjectDir)\..\src\types;$(ProjectDir)\..\src;$(ProjectDir)\..\src\cpptemplate;$(ProjectDir)\..\src\common;$(ProjectDir)\..\..\erpc_c\infra;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
124124
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
125125
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
126126
<MultiProcessorCompilation>false</MultiProcessorCompilation>
@@ -132,7 +132,7 @@ python.exe ..\bin\txt_to_c.py --output .\py_global_init.cpp ..\src\templates\py_
132132
<GenerateDebugInformation>false</GenerateDebugInformation>
133133
<EnableCOMDATFolding>true</EnableCOMDATFolding>
134134
<OptimizeReferences>true</OptimizeReferences>
135-
<AdditionalLibraryDirectories>$(ProjectDir)\boost_1_67_0\lib32-msvc-14.1;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
135+
<AdditionalLibraryDirectories>$(ProjectDir)\boost_1_81_0\lib32-msvc-14.1;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
136136
</Link>
137137
<PreBuildEvent>
138138
<Command>python.exe ..\bin\txt_to_c.py --output .\c_coders.cpp ..\src\templates\c_coders.template
@@ -259,10 +259,10 @@ python.exe ..\bin\txt_to_c.py --output .\py_global_init.cpp ..\src\templates\py_
259259
</ItemGroup>
260260
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
261261
<ImportGroup Label="ExtensionTargets">
262-
<Import Project="custom_build_rules\win_flex_bison_custom_build.targets" />
262+
<Import Project="custom_build_rules\win_flex_bison\win_flex_bison_custom_build.targets" />
263263
</ImportGroup>
264264
<Target Name="GenerateTemplates">
265265
<Message Text="Generating templates" />
266266
<Exec Command="gen_templates.bat" />
267267
</Target>
268-
</Project>
268+
</Project>

erpcgen/VisualStudio_v14/readme_erpcgen.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,23 @@ Requirements
1212
2. Win flex-bison
1313

1414
Direct link to the latests win flex-bison release download:
15-
[https://sourceforge.net/projects/winflexbison]
15+
[https://sourceforge.net/projects/winflexbison/files/win_flex_bison3-latest.zip/download]
16+
1617

1718
Extract win flex-bison zip contents directly into the erpc/erpcgen/VisualStudio_v14 directory
1819
(not into a subdirectory).
1920

2021
3. boost [http://boost.org]
2122

22-
Direct link to the boost 1.67 release downloads:
23-
[https://sourceforge.net/projects/boost/files/boost-binaries/1.67.0/]
23+
Direct link to the boost 1.81 release downloads:
24+
[https://sourceforge.net/projects/boost/files/boost-binaries/1.81.0/]
2425

2526
Install binary for your version of visual studio (x86 architecture)
26-
into current directory (for Visual Studio 2017: boost_1_67_0-msvc-14.1-32.exe):
27+
into current directory (for Visual Studio 2017: boost_1_81_0-msvc-14.1-32.exe):
2728
erpc\erpcgen\VisualStudio_v14\
2829

2930
whole path has to be:
30-
erpc\erpcgen\VisualStudio_v14\boost_1_67_0\
31+
erpc\erpcgen\VisualStudio_v14\boost_1_81_0\
3132

3233
For different version of Visual Studio boost library you need update project:
3334
in Properties\Linker\General update Additional Library Directories
@@ -39,4 +40,3 @@ Visual Studio build output is available in these directories:
3940

4041
erpc/erpcgen/VisualStudio_v14/Debug
4142
erpc/erpcgen/VisualStudio_v14/Release
42-

erpcgen/src/cpptemplate/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ all: cpptempl_test
4141
.PHONY: clean
4242
clean:
4343
@echo "Cleaning output..."
44-
@rm -rf *.o
45-
@rm -rf *.d
44+
@$(rmc) *.o
45+
@$(rmc) *.d
4646
@rm -f $(TARGET)
4747

4848
.PHONY: test testv

erpcsniffer/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ include $(ERPC_ROOT)/mk/targets.mk
8080
ifeq "$(is_mingw)" "1"
8181
LIBRARIES += -L$(BOOST_ROOT)/stage/lib
8282
ifeq "$(build)" "release"
83-
LIBRARIES += -lboost_system-mgw48-mt-d-1_57 -lboost_filesystem-mgw48-mt-d-1_57
83+
LIBRARIES += -lboost_system-mgw48-mt-d-1_81 -lboost_filesystem-mgw48-mt-d-1_81
8484
else
85-
LIBRARIES += -lboost_system-mgw48-mt-1_57 -lboost_filesystem-mgw48-mt-1_57
85+
LIBRARIES += -lboost_system-mgw48-mt-1_81 -lboost_filesystem-mgw48-mt-1_81
8686
endif
8787
else
8888
ifeq "$(is_linux)" "1"
@@ -130,8 +130,8 @@ $(OBJS_ROOT)/erpcgen_parser.tab.hpp: $(ERPC_ROOT)/erpcgen/src/erpcgen_parser.y |
130130
.PHONY: install
131131
install: $(MAKE_TARGET)
132132
@$(call printmessage,c,Installing, erpcsniffer in $(BIN_INSTALL_DIR))
133-
$(at)mkdir -p $(BIN_INSTALL_DIR)
133+
$(at)$(mkdirc) -p $(BIN_INSTALL_DIR)
134134
$(at)install $(MAKE_TARGET) $(BIN_INSTALL_DIR)
135135

136136
clean::
137-
$(at)rm -rf $(OBJS_ROOT)/*.cpp $(OBJS_ROOT)/*.hpp $(OBJS_ROOT)/*.c
137+
$(at)$(rmc) $(OBJS_ROOT)/*.cpp $(OBJS_ROOT)/*.hpp $(OBJS_ROOT)/*.c

install_dependencies.ps1

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Install 7zip
2+
$URL7Zip = "https://gist.githubusercontent.com/dansmith65/7dd950f183af5f5deaf9650f2ad3226c/raw/8b8f6e96de7469cea73c9fe63a5da4d44a7c1ba7/Install-7zip.ps1"
3+
$Path7Zip = ".\Install-7zip.ps1"
4+
Remove-Item -ErrorAction Ignore $Path7Zip
5+
Invoke-WebRequest -URI $URL7Zip -OutFile $Path7Zip
6+
powershell $Path7Zip
7+
Remove-Item -ErrorAction Ignore $Path7Zip
8+
$Path7zipApp="C:\Program Files\7-Zip\7z.exe"
9+
10+
# Install mingw
11+
$URLMingw = "https://github.com/niXman/mingw-builds-binaries/releases/download/12.2.0-rt_v10-rev2/x86_64-12.2.0-release-win32-seh-ucrt-rt_v10-rev2.7z"
12+
$PathMingw7Zip = "mingw.7z"
13+
$PathMingw = "mingw64"
14+
$UnzipMingw = 'x',$PathMingw7Zip,'-y'
15+
Remove-Item -ErrorAction Ignore $PathMingw7Zip
16+
Remove-Item -ErrorAction Ignore $PathMingw
17+
Invoke-WebRequest -URI $URLMingw -OutFile $PathMingw7Zip
18+
& $Path7zipApp $UnzipMingw
19+
Remove-Item -ErrorAction Ignore $PathMingw7Zip
20+
21+
# Install boost
22+
$PathBoostFolder="boost_1_81_0"
23+
$URLBoost = "https://boostorg.jfrog.io/artifactory/main/release/1.81.0/source/" + $PathBoostFolder + ".7z"
24+
$PatHBoost7Zip=".\boost.7z"
25+
$UnzipBoost = 'x',$PatHBoost7Zip,'-y'
26+
Remove-Item -ErrorAction Ignore $PatHBoost7Zip
27+
Remove-Item -ErrorAction Ignore $PathBoostFolder
28+
Invoke-WebRequest -URI $URLBoost -OutFile $PatHBoost7Zip
29+
& $Path7zipApp $UnzipBoost
30+
Remove-Item -ErrorAction Ignore $PatHBoost7Zip
31+
$env:Path += ';'+(Get-Location).tostring() + "\" + $PathMingw+"\bin"
32+
33+
Set-Location ".\"$PathBoostFolder
34+
.\bootstrap.bat gcc
35+
.\b2 --build-type=complete toolset=gcc install
36+
Set-Location "..\"
37+
38+
# Binson/flex
39+
Set-Location ".\erpcgen\VisualStudio_v14"
40+
$PatHBisonFlex7Zip=".\win_flex_bison.zip"
41+
$PatHBisonFlex="win_flex_bison"
42+
Remove-Item -ErrorAction Ignore $PatHBisonFlex7Zip
43+
Remove-Item -ErrorAction Ignore -Recurse $PatHBisonFlex
44+
Remove-Item -ErrorAction Ignore -Recurse ".\custom_build_rules"
45+
Remove-Item -ErrorAction Ignore -Recurse ".\data"
46+
Remove-Item -ErrorAction Ignore -Recurse ".\changelog.md"
47+
Remove-Item -ErrorAction Ignore -Recurse ".\FlexLexer.h"
48+
Remove-Item -ErrorAction Ignore -Recurse ".\README.md"
49+
Remove-Item -ErrorAction Ignore -Recurse ".\win_bison.exe"
50+
Remove-Item -ErrorAction Ignore -Recurse ".\win_flex.exe"
51+
$URLBisonFlex = "https://github.com/lexxmark/winflexbison/releases/download/v2.5.25/win_flex_bison-2.5.25.zip"
52+
Invoke-WebRequest -URI $URLBisonFlex -OutFile $PatHBisonFlex7Zip
53+
Expand-Archive -Path $PatHBisonFlex7Zip
54+
$PatHBisonFlexFull= ".\"+$PatHBisonFlex+"\*"
55+
Move-Item -Path $PatHBisonFlexFull -Destination .\ -force
56+
Remove-Item -ErrorAction Ignore $PatHBisonFlex7Zip
57+
# Remove-Item -ErrorAction Ignore -Recurse $PatHBisonFlex
58+
Set-Location "..\..\"

0 commit comments

Comments
 (0)