We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa516a2 commit 8ef982eCopy full SHA for 8ef982e
do_release.sh
@@ -34,7 +34,7 @@ program_exists python
34
cd "$(dirname "$0")"
35
36
# Determine if git working space clean
37
-if [ -n "$(git status --porcelain| grep -v CHANGELOG.md)" ]; then
+if [ -n "$(git status --untracked-files=no --porcelain| grep -v CHANGELOG.md)" ]; then
38
echo "git working space not clean"
39
exit 1
40
fi
@@ -58,7 +58,7 @@ p() {
58
if [ -z $1 ]; then
59
return 1
60
61
- cp -v $1 ${PACK_DIR}/
+ cp -vr $1 ${PACK_DIR}/
62
return $?
63
}
64
0 commit comments