Skip to content
This repository has been archived by the owner on Dec 10, 2022. It is now read-only.

Commit

Permalink
Merge branch 'release/v0.3.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
dlen committed Apr 1, 2019
2 parents 56a6b72 + 41fcb8f commit d1dca54
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased](https://github.com/passbolt/passbolt_install_scripts/compare/v0.3.1...HEAD)

## [0.3.2](https://github.com/passbolt/passbolt_install_scripts/compare/v0.3.2..v0.3.1) - 2019-02-12

### Fixed
- build_script.sh now correctly concats ubuntu helper scripts

## [0.3.1](https://github.com/passbolt/passbolt_install_scripts/compare/v0.3.1..v0.3.0) - 2019-02-12

### Added
Expand Down
6 changes: 6 additions & 0 deletions build_scripts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@ build() {
done
fi

if [ "$os" == "ubuntu" ]; then
for helper in lib/helpers/"$os"/*.sh; do
cat "$helper" >> "$output";
done
fi

for helper in lib/helpers/*.sh; do
cat "$helper" >> "$output";
done
Expand Down

0 comments on commit d1dca54

Please sign in to comment.