mirror of
https://github.com/git/git
synced 2024-10-31 01:43:41 +00:00
11 lines
190 B
Text
11 lines
190 B
Text
|
# LINT: broken &&-chain okay if explicit "false" signals failure
|
||
|
if condition not satisified
|
||
|
then
|
||
|
echo it did not work...
|
||
|
echo failed!
|
||
|
false
|
||
|
else
|
||
|
echo it went okay
|
||
|
congratulate user
|
||
|
fi
|