From c33733ac2c25e6a70f8dc33bfff92ae619ede4da Mon Sep 17 00:00:00 2001 From: Phil Freeman Date: Thu, 5 Jan 2017 20:05:51 -0800 Subject: [PATCH] Use the current branch, fix #43 (#44) * Use the current branch, fix #43 * Update .travis.yml * Update .travis.yml * Use a script --- .travis.yml | 3 +-- travis.sh | 4 ++++ 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100755 travis.sh diff --git a/.travis.yml b/.travis.yml index a639bbe..5ce9d0f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,5 +17,4 @@ install: - chmod a+x $HOME/purescript script: - - psc-package init - - psc-package verify-set + - ./travis.sh diff --git a/travis.sh b/travis.sh new file mode 100755 index 0000000..58f295b --- /dev/null +++ b/travis.sh @@ -0,0 +1,4 @@ +echo '{ "name": "", "set": "testing", "source": "", "depends": [] }' > psc-package.json +mkdir -p .psc-package/testing/.set +cp packages.json .psc-package/testing/.set/packages.json +psc-package verify-set