mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-02-01 18:06:51 +01:00
14 lines
243 B
Bash
Executable File
14 lines
243 B
Bash
Executable File
#!/bin/bash
|
|
|
|
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
|
|
|
|
echo "OS: $os; qmake args: $qmake_args" |