File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5,14 +5,14 @@ if [ -z $2 ]
55then
66 echo " Bumping package version to $1 "
77
8- sed -E " s/current_version = .+/current_version = \'$SEMVER \', /g" setup.py > tempfile && cat tempfile > setup.py && rm -f tempfile
8+ sed -E " s/current_version = .+/current_version = \'$SEMVER \'/g" setup.py > tempfile && cat tempfile > setup.py && rm -f tempfile
99 echo --------------------------
1010 echo " Done, Package now at $1 "
1111
1212else
1313 echo " Bumping package version to $1 -dev.$2 "
1414
15- sed -E " s/current_version = .+/current_version = \'$SEMVER -dev.$2 \', /g" setup.py > tempfile && cat tempfile > setup.py && rm -f tempfile
15+ sed -E " s/current_version = .+/current_version = \'$SEMVER -dev.$2 \'/g" setup.py > tempfile && cat tempfile > setup.py && rm -f tempfile
1616
1717 echo --------------------------
1818 echo " Done, Package now at $1 -dev.$2 "
You can’t perform that action at this time.
0 commit comments