Skip to content

Commit 85337c3

Browse files
committed
* Fixed a bug in i686-elf-tools.sh caused by a older
commit
1 parent a691c7f commit 85337c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/scripts/i686-elf-tools.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,13 @@ function main {
8686

8787
downloadSources
8888

89-
if [[ $WINDOWS_ONLY == true ]]; then
89+
if [[ $LINUX_ONLY == true ]]; then
9090
echoColor "Skipping compiling Linux as 'win' was specified in commandline args '$args'"
9191
else
9292
compileAll "windows"
9393
fi
9494

95-
if [[ $LINUX_ONLY == true ]]; then
95+
if [[ $WINDOWS_ONLY == true ]]; then
9696
echoColor "Skipping compiling Windows as 'linux' was specified in commandline args '$args'"
9797
else
9898
compileAll "linux"

0 commit comments

Comments
 (0)