aboutsummaryrefslogtreecommitdiff
path: root/prod-yolean.sh
diff options
context:
space:
mode:
Diffstat (limited to 'prod-yolean.sh')
-rwxr-xr-xprod-yolean.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/prod-yolean.sh b/prod-yolean.sh
index 8fc91e1..80cb893 100755
--- a/prod-yolean.sh
+++ b/prod-yolean.sh
@@ -9,7 +9,16 @@ function annotate {
key=$1
value=$2
file=$3
- sed -i "s| annotations:| annotations:\n ${ANNOTATION_PREFIX}$key: '$value'|" $file
+ case $(uname) in
+ Darwin*)
+ sed -i '' 's| annotations:| annotations:\
+ --next-annotation--|' $file
+ sed -i '' "s|--next-annotation--|${ANNOTATION_PREFIX}$key: '$value'|" $file
+ ;;
+ *)
+ sed -i "s| annotations:| annotations:\n ${ANNOTATION_PREFIX}$key: '$value'|" $file
+ ;;
+ esac
}
git fetch