Adds some permissions to the tar extracted files (#299)

This patch adds permissions after extracting the config tar as suggested by issue #257
pull/302/head
Nadhir 2021-09-29 22:25:22 +01:00 committed by GitHub
parent 3651c8438b
commit 9acceeb924
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ THE SOFTWARE.
<span v-html="$t('templates.setupSections.download.extractTheNewCompressedConfigurationArchiveUsingTar')"></span>
<br />
<BashPrism :key="$parent.tarName"
:cmd="`tar -xzvf ${$parent.tarName}`"
:cmd="`tar -xzvf ${$parent.tarName} | xargs chmod 0644`"
@copied="codeCopiedEvent('Extract new nginx config tar')"
></BashPrism>
</p>