Skip to content

Commit 1cae783

Browse files
committed
fix: Semicolon
1 parent 9d0935d commit 1cae783

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export function getInstallationScript({
7575
const installation = includeInstallation ? `sudo apt update; sudo apt install postgresql-${version};` : '';
7676

7777
return `
78-
${installation};
78+
${installation}
7979
sudo -u postgres mkdir -p ${PD_TEMP_DATA_PATH}/data;
8080
sudo -u postgres /usr/lib/postgresql/${version}/bin/initdb -D ${PD_TEMP_DATA_PATH}/data;
8181
sudo -u postgres /usr/lib/postgresql/${version}/bin/pg_ctl -o "-F -p ${port}" -D ${PD_TEMP_DATA_PATH}/data -l ${PD_TEMP_DATA_PATH}/logfile start;

0 commit comments

Comments
 (0)