Skip to content

Commit

Permalink
Work!
Browse files Browse the repository at this point in the history
  • Loading branch information
grasmash committed Jul 12, 2016
1 parent 83fd570 commit b8fc0db
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -103,3 +103,6 @@ nbproject/*
# Some files should be excluded from blt but not from the projects it
# generates, so they must be specified here rather than in template/.gitignore.
template/.idea/.name

blt-project/composer.lock
blt-project/vendor
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ addons:
- svn-5223.devcloud.hosting.acquia.com

before_install:
- git fetch --unshallow
# Decrypt private SSH key id_rsa_blt.enc, save as ~/.ssh/id_rsa_blt.
- if [[ "$TRAVIS_PULL_REQUEST" == "false" ]]; then openssl aes-256-cbc -K $encrypted_c0b166e924da_key -iv $encrypted_c0b166e924da_iv -in id_rsa_blt.enc -out ~/.ssh/id_rsa -d; chmod 600 ~/.ssh/id_rsa; ls -lash ~/.ssh; eval "$(ssh-agent -s)"; ssh-add ~/.ssh/id_rsa; fi
# Enable aliases for non-interactive shell.
Expand Down
4 changes: 2 additions & 2 deletions blt-project/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
"license": "GPLv2",
"authors": [
{
"name": "Mattheww Grasmick",
"name": "Matthew Grasmick",
"email": "matthew.grasmick@acquia.com"
}
],
"minimum-stability": "dev",
"repositories": [
{
"type": "vcs",
"url": "../"
"url": "../../blt"
}
],
"require": {
Expand Down
9 changes: 9 additions & 0 deletions scripts/blt/convert-to-composer.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/env bash

echo "Note that you will lose any custom scripts in build/custom"

rm -rf build bolt.sh
./vendor/acquia/blt/blt.sh blt:alias
blt init

echo "Please run blt configure"

0 comments on commit b8fc0db

Please sign in to comment.