Skip to content

Commit 5b5d07c

Browse files
committed
fix: improving make.bat
1 parent 131a242 commit 5b5d07c

File tree

1 file changed

+16
-9
lines changed

1 file changed

+16
-9
lines changed

make.bat

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ REM It requires: go version 1.16.6 or better and the cli for git installed
66
REM
77
go version
88
mkdir bin
9-
echo "Getting ready to build the datatools in bin"
9+
echo off
10+
echo Getting ready to build the datatools in bin
11+
echo on
1012
go build -o bin\codemeta2cff.exe cmd\codemeta2cff\codemeta2cff.go
1113
go build -o bin\csv2json.exe cmd\csv2json\csv2json.go
1214
go build -o bin\csv2mdtable.exe cmd\csv2mdtable\csv2mdtable.go
@@ -22,7 +24,7 @@ go build -o bin\findfile.exe cmd\findfile\findfile.go
2224
go build -o bin\json2toml.exe cmd\json2toml\json2toml.go
2325
go build -o bin\json2yaml.exe cmd\json2yaml\json2yaml.go
2426
go build -o bin\jsoncols.exe cmd\jsoncols\jsoncols.go
25-
go build -o bin\jsonjoin.exe cmd\jsonjoin\jsonjoin.gp
27+
go build -o bin\jsonjoin.exe cmd\jsonjoin\jsonjoin.go
2628
go build -o bin\jsonmunge.exe cmd\jsonmunge\jsonmunge.go
2729
go build -o bin\jsonrange.exe cmd\jsonrange\jsonrange.go
2830
go build -o bin\mergepath.exe cmd\mergepath\mergepath.go
@@ -38,7 +40,9 @@ go build -o bin\urlparse.exe cmd\urlparse\urlparse.go
3840
go build -o bin\xlsx2csv.exe cmd\xlsx2csv\xlsx2csv.go
3941
go build -o bin\xlsx2json.exe cmd\xlsx2json\xlsx2json.go
4042
go build -o bin\yaml2json.exe cmd\yaml2json\yaml2json.go
41-
echo "Checking compile should see version number of dataset"
43+
echo off
44+
echo Checking compile should see version number of dataset
45+
echo on
4246
bin\codemeta2cff.exe -version
4347
bin\csv2json.exe -version
4448
bin\csv2mdtable.exe -version
@@ -70,9 +74,12 @@ bin\urlparse.exe -version
7074
bin\xlsx2csv.exe -version
7175
bin\xlsx2json.exe -version
7276
bin\yaml2json.exe -version
73-
echo "If OK, you can now copy the dataset.exe to %USERPROFILE%\goin"
74-
echo ""
75-
echo " copy bin\* %USERPROFILE%\AppData\go\bin"
76-
""
77-
echo "or someplace else in your %PATH%"
78-
""
77+
echo off
78+
echo If OK, you can now copy the dataset.exe to %USERPROFILE%\go\bin in
79+
echo off
80+
echo copy bin\* %USERPROFILE%\AppData\go\bin
81+
echo off
82+
echo or someplace else in your PATH
83+
echo off
84+
echo %PATH%
85+
echo on

0 commit comments

Comments
 (0)