mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-11 04:48:00 +03:00
15 lines
144 B
Bash
Executable File
15 lines
144 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
if [ "$TRAVIS_PULL_REQUEST" = false ]
|
|
then
|
|
|
|
sh/test --arg debug false
|
|
|
|
else
|
|
|
|
sh/test --arg debug true
|
|
|
|
fi
|