Actions
This commit is contained in:
parent
a927afee0a
commit
f9082bd418
2 changed files with 14 additions and 2 deletions
|
|
@ -1,3 +1,12 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
echo "testttt $1 $2"
|
os="$1"
|
||||||
|
qmake_args="$2"
|
||||||
|
|
||||||
|
if [[ "$os" == *"ubuntu"* ]]; then
|
||||||
|
echo "We are building for GNU/Linux on Ubuntu."
|
||||||
|
is_linux=true
|
||||||
|
else
|
||||||
|
echo "We are building for Mac OS X."
|
||||||
|
is_linux=false
|
||||||
|
fi
|
||||||
|
|
@ -1 +1,4 @@
|
||||||
echo "testttt $args[0] $args[1]"
|
os = $args[0]
|
||||||
|
qmake_args = $args[1]
|
||||||
|
|
||||||
|
echo "We are building for GNU/Linux on Ubuntu."
|
||||||
Loading…
Add table
Reference in a new issue