diff --git a/scripts/diff b/scripts/diff index 88a9c4c..07a12f6 100755 --- a/scripts/diff +++ b/scripts/diff @@ -15,7 +15,7 @@ fi if [ -d $foldername ]; then cd $foldername - find > /tmp/manifest.test + find . > /tmp/manifest.test diff manifest /tmp/manifest.test if [ "$?" == "0" ]; then echo "Clean Install $foldername" diff --git a/scripts/install b/scripts/install index b56e6b3..5579926 100755 --- a/scripts/install +++ b/scripts/install @@ -111,7 +111,7 @@ main() { install_go install_gb install_goprotobuf - cd $GO_INSTALL_ROOT && find > manifest + cd $GO_INSTALL_ROOT && find . > manifest tput sgr0 }