Files
LDS-ImageDownloader/Download-AllInstallers.sh
2022-06-27 19:20:21 +02:00

11 lines
231 B
Bash

#!/bin/bash
#Check if config is in current directory
if [[ ! -f Locations.conf ]];then
echo "Location config not found, Please got to the Project directory"
exit 10
fi
for filename in ./Installer-*; do
$SHELL $filename
done