Skip to content

Instantly share code, notes, and snippets.

@mlocher
Created March 31, 2014 08:10
Show Gist options
  • Save mlocher/9887546 to your computer and use it in GitHub Desktop.
Save mlocher/9887546 to your computer and use it in GitHub Desktop.
Installing PlayFramework on the Codeship
#!/bin/sh
PLAY_VERSION="2.2.2"
curl -o play-${PLAY_VERSION}.zip http://downloads.typesafe.com/play/${PLAY_VERSION}/play-${PLAY_VERSION}.zip
unzip play-${PLAY_VERSION}.zip
export PATH=$PATH:~/play-${PLAY_VERSION}
play --version
@kmanicka
Copy link

kmanicka commented Feb 6, 2016

in CodeShip image there is already a "play" executable. So the path should be appropriate and the PlayFramework Play executable should be in front.
export PATH=./play-${PLAY_VERSION}:$PATH

Also for Play 1.4.1 the command to check version should be
play version

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment