Skip to content
Snippets Groups Projects
Commit 06ccb566 authored by Mikael Henriksson's avatar Mikael Henriksson :runner:
Browse files

Fixed reliability problem with absolute paths.

parent 6ace4282
No related branches found
No related tags found
No related merge requests found
File deleted
......@@ -60,7 +60,7 @@ if [ "${#DESIGN_FILES[@]}" -lt 1 ]; then
echo "Error: No design files (DESIGN_FILES) provided." && exit -1
fi
for file in "${DESIGN_FILES[@]}"; do
if [ -f "$file" ]; then
if ! [ -f "$file" ]; then
echo "Error: Could not locate design file '$file'." && exit -1
fi
done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment