mirror of https://github.com/knative/client.git
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:
parent
80f7f341bb
commit
e67d207d3b
|
@ -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)
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue