diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-08-23 23:13:33 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-23 23:13:33 +0300 |
commit | 84f4996643b84c6f3dcd5c3edc72ae176dceaf65 (patch) | |
tree | 74b7eddfc24ae22409baf5f3e4be28ce52d5881a /src/php | |
parent | 0cafeee86296b9f19e6425055e0c4037eff41985 (diff) |
Fix bug - Python: Error installing os-provided python (#112)
* python: fix bug
* bump versions
Diffstat (limited to 'src/php')
-rw-r--r-- | src/php/devcontainer-feature.json | 2 | ||||
-rwxr-xr-x | src/php/install.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/php/devcontainer-feature.json b/src/php/devcontainer-feature.json index 21089a5..305914a 100644 --- a/src/php/devcontainer-feature.json +++ b/src/php/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "php", - "version": "1.0.2", + "version": "1.0.3", "name": "PHP", "options": { "version": { diff --git a/src/php/install.sh b/src/php/install.sh index 0807fb7..fdc374a 100755 --- a/src/php/install.sh +++ b/src/php/install.sh @@ -220,6 +220,6 @@ fi chown -R "${USERNAME}:php" "${PHP_DIR}" chmod -R g+r+w "${PHP_DIR}" -find "${PHP_DIR}" -type d | xargs -n 1 chmod g+s +find "${PHP_DIR}" -type d -print0 | xargs -n 1 -0 chmod g+s echo "Done!" |