Skip to content

Commit

Permalink
Merge branch 'feature/jwtodd' of https://github.com/intuit/wasabi int…
Browse files Browse the repository at this point in the history
…o feature/jwtodd
  • Loading branch information
jwtodd committed Aug 31, 2016
2 parents 2ea68be + 6feba28 commit 5950bb7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions bin/wasabi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# limitations under the License.
###############################################################################

formulas=("bash" "cask" "git" "maven" "wget" "ruby" "node")
formulas=("bash" "cask" "git" "git-flow-avh" "maven" "wget" "ruby" "node")
taps=("caskroom/cask")
casks=("java" "docker")
endpoint_default=localhost:8080
Expand Down Expand Up @@ -218,7 +218,8 @@ package() {
if [ "${WASABI_OS}" == "${wasabi_os_default}" ]; then \
(cd target; npm install; bower install; grunt clean); \
fi; \
(cd target; grunt build --target=develop --no-color; \
# fixme: shouldn't have to force or ignore tests
(cd target; grunt build --force --target=develop --no-color; \
# grunt test); \
); \
cp -r build target; \
Expand All @@ -235,7 +236,8 @@ package() {
done; \
(cd target; ../bin/fpm.sh -n ${name} -v ${version} -p ${profile}))

# find . -type f \( -name "*.rpm" -or -name "*.deb" \) -exec mv {} ./target \;
find . -type f \( -name "*.rpm" -or -name "*.deb" \) -exec mv {} ./target 2>/dev/null \;

echo "deployable build packages:"

find . -type f \( -name "*.rpm" -or -name "*.deb" \)
Expand Down
2 changes: 1 addition & 1 deletion modules/ui/bin/fpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ for pkg in "deb" "rpm"; do
if [ "${WASABI_OS}" == "${wasabi_os_default}" ]; then
docker run -it -v `pwd`:/build --rm liuedy/centos-fpm fpm ${fpm} || exitOnError "failed to build rpm: $module"
else
(cd target; eval fpm ${fpm}) || exitOnError "failed to build rpm: $module"
eval fpm ${fpm} || exitOnError "failed to build rpm: $module"
fi
done

0 comments on commit 5950bb7

Please sign in to comment.