Skip to content
Snippets Groups Projects
Commit 343b6741 authored by Jason Paryani's avatar Jason Paryani
Browse files

Fix wrong PGP signature for Sandstorm spk builds

There's a bug (feature?) in Sandstorm that prevents spks with an
improper PGP signature from being installed. This change produces an
spk without PGP signatures, and the future `spk repack` command will
allow you to add/change the PGP signatures in addition to changing app id.
parent 0eded0bb
No related branches found
No related tags found
No related merge requests found
...@@ -55,9 +55,9 @@ script: ...@@ -55,9 +55,9 @@ script:
- cd $TRAVIS_BUILD_DIR/.sandstorm - cd $TRAVIS_BUILD_DIR/.sandstorm
- sed -i "s/\sid = .*/$SANDSTORM_ID/" sandstorm-pkgdef.capnp - sed -i "s/\sid = .*/$SANDSTORM_ID/" sandstorm-pkgdef.capnp
- ./build.sh - ./build.sh
- spk pack $TRAVIS_BUILD_DIR/rocket.chat.spk - sed -i "s/\spgp/#pgp/g" sandstorm-pkgdef.capnp
- spk pack $TRAVIS_BUILD_DIR/../build/rocket.chat.latest.spk
- cd $TRAVIS_BUILD_DIR - cd $TRAVIS_BUILD_DIR
- mv rocket.chat.spk ../build/rocket.chat.latest.spk
after_deploy: after_deploy:
- cd .travis - cd .travis
- sh ./builddocker.sh - sh ./builddocker.sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment