Upload files to "/"
This commit is contained in:
parent
b407496c27
commit
923c53ed1d
20
update.sh
Normal file
20
update.sh
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
if [ "$#" -ne 2 ]; then
|
||||||
|
echo "Usage: $0 <PARAMETER> <NEW_VALUE>"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
PARAMETER=$1
|
||||||
|
NEW_VALUE=$2
|
||||||
|
|
||||||
|
# Список файлов
|
||||||
|
FILES=(
|
||||||
|
"./config.json"
|
||||||
|
".env"
|
||||||
|
)
|
||||||
|
|
||||||
|
for FILE in "${FILES[@]}"; do
|
||||||
|
EXPANDED_FILE=$(eval echo "$FILE")
|
||||||
|
sed -i "s|###$PARAMETER###|$NEW_VALUE|g" "$EXPANDED_FILE"
|
||||||
|
done
|
Loading…
Reference in New Issue
Block a user