diff options
author | Tobias Nyholm <tobias.nyholm@gmail.com> | 2016-08-26 17:46:14 +0200 |
---|---|---|
committer | Cole Furfaro-Strode <colestrode@users.noreply.github.com> | 2016-08-26 11:46:14 -0400 |
commit | 8c75ab08e18bc349e39582c6f8d17a9970c4a3c0 (patch) | |
tree | 7a5d40e98ea87c59a363b81fca2170835f1bab35 /post-install.sh | |
parent | 1bbefef4df13778b5924e959047124f075ac38e6 (diff) | |
download | php-sparkpost-8c75ab08e18bc349e39582c6f8d17a9970c4a3c0.zip php-sparkpost-8c75ab08e18bc349e39582c6f8d17a9970c4a3c0.tar.gz php-sparkpost-8c75ab08e18bc349e39582c6f8d17a9970c4a3c0.tar.bz2 |
Test cleanup (#137)
* Test cleanup
* Make travis run again
* Composer update
* Install PHPunit
* Removed composer.lock
* Added composer.lock and drop support for php 5.5
* Update .travis.yml
Diffstat (limited to 'post-install.sh')
-rwxr-xr-x | post-install.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/post-install.sh b/post-install.sh new file mode 100755 index 0000000..0326a42 --- /dev/null +++ b/post-install.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +if [ ! -f 'examples/example-options.json' ]; then echo '{\n\t"key":"YOUR_API_KEY"\n}' >> examples/example-options.json; fi |