Skip to content

Commit

Permalink
[CI] Fix typos from
Browse files Browse the repository at this point in the history
5fbe95d

Reorder some imports
  • Loading branch information
tobil4sk committed Sep 27, 2021
1 parent a0e2761 commit 497a94e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions tests/runci/targets/Flash.hx
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package runci.targets;

import runci.System.CommandFailure;
import sys.io.File;
import sys.FileSystem;
import haxe.io.Path;
import haxe.Json;
import sys.io.File;
import sys.io.Process;
import haxe.Json;
import haxe.Http;
import haxe.io.Path;

import runci.System.*;
import runci.System.CommandFailure;
import runci.Config.*;

class Flash {
Expand All @@ -27,8 +27,8 @@ class Flash {
} else {
var apacheMirror = Json.parse(Http.requestUrl("http://www.apache.org/dyn/closer.lua?as_json=1")).preferred;
var flexVersion = "4.16.0";
runCommand("wget", ["-nv", '${apacheMirror}/flex/${flexVersion}/binaries/apache-flex-sdk-${flexVersion}-bin.tar.gz']);
runNetworkCommand("tar", ["-xf", 'apache-flex-sdk-${flexVersion}-bin.tar.gz', "-C", Sys.getEnv("HOME")]);
runNetworkCommand("wget", ["-nv", '${apacheMirror}/flex/${flexVersion}/binaries/apache-flex-sdk-${flexVersion}-bin.tar.gz']);
runCommand("tar", ["-xf", 'apache-flex-sdk-${flexVersion}-bin.tar.gz', "-C", Sys.getEnv("HOME")]);
var flexsdkPath = Sys.getEnv("HOME") + '/apache-flex-sdk-${flexVersion}-bin';
addToPATH(flexsdkPath + "/bin");
var playerglobalswcFolder = flexsdkPath + "/player";
Expand Down
2 changes: 1 addition & 1 deletion tests/runci/targets/Hl.hx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Hl {
Linux.requireAptPackages(["libpng-dev", "libjpeg-turbo8-dev", "libturbojpeg", "zlib1g-dev", "libvorbis-dev"]);
case "Mac":
runNetworkCommand("brew", ["update", '--preinstall']);
runCommand("brew", ["bundle", '--file=${hlSrc}/Brewfile']);
runNetworkCommand("brew", ["bundle", '--file=${hlSrc}/Brewfile']);
case "Windows":
//pass
}
Expand Down

0 comments on commit 497a94e

Please sign in to comment.