Samuel Attard 10 months ago
parent
commit
89d77e39f4
1 changed files with 5 additions and 1 deletions
  1. 5 1
      script/actions/move-artifacts.sh

+ 5 - 1
script/actions/move-artifacts.sh

@@ -7,7 +7,11 @@ if [ "`uname`" == "Darwin" ]; then
     BUILD_TYPE="mas"
   fi
 elif [ "`uname`" == "Linux" ]; then
-  BUILD_TYPE="linux"
+  if [ "$ELECTRON_DEPOT_TOOLS_WIN_TOOLCHAIN" == "1" ]; then
+    BUILD_TYPE="windows"
+  else
+    BUILD_TYPE="linux"
+  fi
 else
   echo "Unsupported platform"
   exit 1