You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
470 B
15 lines
470 B
#!/bin/bash
|
|
if [ ! -d sums ]; then
|
|
mkdir sums
|
|
fi
|
|
for file in deploy_files/deploy_*.php; do
|
|
if [ -f "$file" ]; then
|
|
echo -e "Making sum file for: $file \r\n"
|
|
|
|
# Remove "deploy_" from the beginning and ".php" from the end
|
|
new_file_name=$(echo "$file" | sed 's/^deploy_//;s/\.php$//')
|
|
|
|
php -c /opt/neatoDeployments/neatoDeploy.ini -f /opt/neatoDeployments/neatoDeploy.phar "$new_file_name" -marksafe -skipdeploy
|
|
fi
|
|
done
|
|
|
|
|