summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Clausen <jac@nordu.net>2018-12-12 07:56:11 +0100
committerJon Clausen <jac@nordu.net>2018-12-12 07:56:11 +0100
commit1b8c3b23fbbad2fba2b6d177e6cac15516b2ecce (patch)
tree8d0ed7ad4351de2c4b81ea67082437e969ebc8a9
parent17024499264063b0a758b4871c46fb358205f459 (diff)
whitespace is a nono with variable assignments
-rwxr-xr-xcode/vlanscrape-wrapper8
1 files changed, 4 insertions, 4 deletions
diff --git a/code/vlanscrape-wrapper b/code/vlanscrape-wrapper
index be7c608..2c18641 100755
--- a/code/vlanscrape-wrapper
+++ b/code/vlanscrape-wrapper
@@ -29,20 +29,20 @@ if [ $Something -ne 0 ]
then
if [ $FilesAdded -ne 0 ]
then
- CommitMsg = "File addition"
+ CommitMsg="File addition"
fi
if [ $FilesModified -ne 0 ]
then
if [ -z $CommitMsg ]
then
- CommitMsg = "File modification"
+ CommitMsg="File modification"
else
- CommitMsg = "$CommiMsg and modification"
+ CommitMsg="$CommiMsg and modification"
fi
fi
if [ -z $CommitMsg ]
then
- CommitMsg = "something changed"
+ CommitMsg="something changed"
fi
fi