Skip to content

Commit 219e10c

Browse files
committed
fix: expect string not boolean in template file.
1 parent 186b329 commit 219e10c

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# GCP Tamr VM module
22

3+
## v2.2.0 - May 1st 2023
4+
* Adjust condition in startup script to expect a string
5+
36
## v2.2.0 - May 1st 2023
47
* Following optional input variables now available
58
* pre_install_bash

VERSION

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
2.2.0
2-
1+
2.2.1

templates/startup_script.sh.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ EOF
1717
# check if tamr has been installed on the VM, if not download and install it
1818
if [[ ! -f ${tamr_home_directory}/tamr/start-unify.sh ]]; then
1919
# run any custom commands to prepare VM
20-
%{ if pre_install_bash }
20+
%{ if pre_install_bash != ""}
2121
${pre_install_bash}
2222
%{ endif }
2323
# download tamr install

0 commit comments

Comments
 (0)