about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCharadon <dev@iotib.net>2022-07-14 04:54:40 -0400
committerCharadon <dev@iotib.net>2022-07-14 04:54:40 -0400
commitc5da0d0d50d1d18632c9ece11876023a2393cccd (patch)
treef2eb41066b185706eeb3f5cf0b71ec19aaa454a8
parentd439df54fafa2ab126d6499655ded95e40028aba (diff)
downloaddscip-c5da0d0d50d1d18632c9ece11876023a2393cccd.tar.gz
Made run() return if no new update from upstream.
-rwxr-xr-xdscip2
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
href='#n27'>27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83