diff options
author | Charadon <dev@iotib.net> | 2022-07-14 04:54:40 -0400 |
---|---|---|
committer | Charadon <dev@iotib.net> | 2022-07-14 04:54:40 -0400 |
commit | c5da0d0d50d1d18632c9ece11876023a2393cccd (patch) | |
tree | f2eb41066b185706eeb3f5cf0b71ec19aaa454a8 | |
parent | d439df54fafa2ab126d6499655ded95e40028aba (diff) | |
download | dscip-c5da0d0d50d1d18632c9ece11876023a2393cccd.tar.gz |
Made run() return if no new update from upstream.
-rwxr-xr-x | dscip | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dscip b/dscip index d8a2696..fb09c62 100755 --- a/dscip +++ b/dscip @@ -113,6 +113,8 @@ run () { build elif [ ! "$LAST_COMMIT" = "$CURRENT_COMMIT" ]; then # If the last commit and current commit don't match, then we go ahead and build. build + else + return fi else build |