diff --git a/CHANGELOG.md b/CHANGELOG.md index f80f461..a58e9f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.8.2] - 2024-06-20 +### Changed +- Corrige un bug en oglivecli que impide cambiar el propietario del oglive + ## [0.8.1] - 2024-06-18 ### Changed - AƱade nuevos modulos al grubx64.efi diff --git a/bin/oglivecli b/bin/oglivecli index e0874d7..777ee0c 100755 --- a/bin/oglivecli +++ b/bin/oglivecli @@ -391,7 +391,7 @@ function install() { }' > "$OGLIVEDIR/oglive_info.json" [ ! -f "$OGLIVEDIR/oglive_info.json" ] && { echo "{\"error\": \"JSON_CREATION_FAILED\", \"message\": \"Failed to create oglive_info.json.\"}"; exit 500; } - sudo chown -R :opengnsys "$OGLIVEDIR" >/dev/null 2>&1 || { echo "{\"error\": \"CHOWN_FAILED\", \"message\": \"Failed to change ownership for $OGLIVEDIR.\"}"; exit 500; } + chown -R :opengnsys "$OGLIVEDIR" >/dev/null 2>&1 || { echo "{\"error\": \"CHOWN_FAILED\", \"message\": \"Failed to change ownership for $OGLIVEDIR.\"}"; exit 500; } JSON_OUTPUT=$(jq -n \ --arg id "$OGLIVEID" \ --arg dist "$OGLIVEDIST" \