mirror of
https://github.com/certbot/certbot.git
synced 2026-08-02 00:22:28 +02:00
Fix stray $x bug from the old version of this script
This commit is contained in:
@@ -82,7 +82,7 @@ SetVersion() {
|
|||||||
ver="$1"
|
ver="$1"
|
||||||
for pkg_dir in $SUBPKGS
|
for pkg_dir in $SUBPKGS
|
||||||
do
|
do
|
||||||
sed -i $x "s/^version.*/version = '$ver'/" $pkg_dir/setup.py
|
sed -i "s/^version.*/version = '$ver'/" $pkg_dir/setup.py
|
||||||
done
|
done
|
||||||
sed -i "s/^__version.*/__version__ = '$ver'/" letsencrypt/__init__.py
|
sed -i "s/^__version.*/__version__ = '$ver'/" letsencrypt/__init__.py
|
||||||
|
|
||||||
@@ -147,13 +147,14 @@ mkdir ../kgs
|
|||||||
kgs="../kgs/$version"
|
kgs="../kgs/$version"
|
||||||
pip freeze | tee $kgs
|
pip freeze | tee $kgs
|
||||||
pip install nose
|
pip install nose
|
||||||
for thing in letsencrypt $subpkgs_modules ; do
|
for module in letsencrypt $subpkgs_modules ; do
|
||||||
echo testing $thing
|
echo testing $module
|
||||||
nosetests $thing
|
nosetests $module
|
||||||
done
|
done
|
||||||
deactivate
|
deactivate
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
|
echo Now in $PWD
|
||||||
name=${root_without_le%.*}
|
name=${root_without_le%.*}
|
||||||
ext="${root_without_le##*.}"
|
ext="${root_without_le##*.}"
|
||||||
rev="$(git rev-parse --short HEAD)"
|
rev="$(git rev-parse --short HEAD)"
|
||||||
|
|||||||
Reference in New Issue
Block a user