mirror of
https://github.com/urbit/shrub.git
synced 2024-11-29 06:45:42 +03:00
15 lines
144 B
Plaintext
15 lines
144 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
if [ "$TRAVIS_PULL_REQUEST" = false ]
|
||
|
then
|
||
|
|
||
|
sh/test --arg debug false
|
||
|
|
||
|
else
|
||
|
|
||
|
sh/test --arg debug true
|
||
|
|
||
|
fi
|