Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
Merge pull request #3 from lsst/tickets/DM-14026-which
Browse files Browse the repository at this point in the history
which trials and tribulations
  • Loading branch information
jhoblitt committed Apr 12, 2018
2 parents be69b68 + c72018c commit c5ddfd5
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
os: linux
language: cpp
matrix:
include:
- env: TEST=shellcheck
services:
- docker
script: |
set -e
shopt -s globstar nullglob
CHECK=( **/*.sh )
[[ ${#CHECK[@]} -eq 0 ]] && exit
docker run -v $(pwd):$(pwd) -w $(pwd) \
koalaman/shellcheck-alpine:v0.4.6 -x "${CHECK[@]}"
branches:
only:
- master
notifications:
email: false
4 changes: 3 additions & 1 deletion ups/eupspkg.cfg.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/bin/bash

# Work around SIP on MacOSX
build() {
export DYLD_LIBRARY_PATH=$LSST_LIBRARY_PATH
python $(which scons) -j$NJOBS prefix="$PREFIX" version="$VERSION" cc="$CC"
python "$(command -v scons)" -j"$NJOBS" prefix="$PREFIX" version="$VERSION" cc="$CC"
}

install() {
Expand Down

0 comments on commit c5ddfd5

Please sign in to comment.