From 720a5cdb1bf796aa7d0368d2e8a630c3a883d7bc Mon Sep 17 00:00:00 2001 From: Martin Buchleitner Date: Mon, 22 May 2023 14:14:00 +0200 Subject: [PATCH] fix: update script and perm on the script Signed-off-by: Martin Buchleitner --- replace-variables.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/replace-variables.sh b/replace-variables.sh index 4738469..0deaecc 100644 --- a/replace-variables.sh +++ b/replace-variables.sh @@ -1,16 +1,16 @@ #!/bin/sh # Replace -find examples* -type f -exec sed -i -e "s//$USER_ID/g" {} \; +find deployment* -type f -exec sed -i -e "s//$USER_ID/g" {} \; # Replace -find examples* -type f -exec sed -i -e "s//$ANIMAL/g" {} \; +find deployment* -type f -exec sed -i -e "s//$ANIMAL/g" {} \; # Replace -find examples* -type f -exec sed -i -e "s//$HOST_IP/g" {} \; +find deployment* -type f -exec sed -i -e "s//$HOST_IP/g" {} \; # Replace -find examples* -type f -exec sed -i -e "s//$ENVIRONMENT/g" {} \; +find deployment* -type f -exec sed -i -e "s//$ENVIRONMENT/g" {} \; # Replace -find examples* -type f -exec sed -i -e "s//$DOMAIN/g" {} \; \ No newline at end of file +find deployment* -type f -exec sed -i -e "s//$DOMAIN/g" {} \; \ No newline at end of file