Skip to content

Commit

Permalink
update build script for full tar file
Browse files Browse the repository at this point in the history
  • Loading branch information
topseom committed Dec 1, 2023
1 parent 93d524d commit efa56c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -98,7 +98,7 @@ request(download_options)
.then(() => {
console.log('Taring archive');
process.chdir('./dockerized-phantomjs');
return execSync('tar -zcf ../dockerized-phantomjs.tar.gz ./lib ./lib64 ./usr/lib');
return execSync('tar -zcf ../dockerized-phantomjs.tar.gz ./*');
})
.then(() => {
if (process.env.GITHUB_TOKEN) return releaseToGithub();
Expand Down

0 comments on commit efa56c6

Please sign in to comment.