ci: fix regex in push script for windows

This commit is contained in:
5chdn
2018-10-01 17:32:18 +01:00
parent ab6172261e
commit a86d0052f0

View File

@@ -19,7 +19,7 @@ echo ${filetest[*]}
for DIR in "${filetest[@]}";
do
cd $DIR
if [[ $DIR =~ "*windows*" ]];
if [[ $DIR =~ "windows" ]];
then
WIN=".exe";
else