chore(build.sh) Add indicator in watch mode after successful compilation (#432)

* chore(build.sh) Add indicator in watch mode after successful compilation

* chore(build): Update changelog
This commit is contained in:
Roland Huß 2019-10-08 13:34:38 +02:00 committed by Knative Prow Robot
parent 80f7f341bb
commit e67d207d3b
2 changed files with 4 additions and 1 deletions

View File

@ -70,6 +70,9 @@
| Add --annotation flag | Add --annotation flag
| https://github.com/knative/client/pull/422[#422] | https://github.com/knative/client/pull/422[#422]
| 🎁
| Update build.sh -w to add a message when compilation succeeded
| https://github.com/knative/client/pull/432[#432]
|=== |===
## v0.2.0 (2019-07-10) ## v0.2.0 (2019-07-10)

View File

@ -222,7 +222,7 @@ watch() {
set -e set -e
echo "🔁 Watch" echo "🔁 Watch"
fswatch $fswatch_opts | xargs -n1 -I{} $command fswatch $fswatch_opts | xargs -n1 -I{} sh -c "$command && echo 👌 OK"
} }
# Dir where this script is located # Dir where this script is located