limbo-ai 2026.4.13 → 2026.4.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -158,6 +158,9 @@ if [ "$GOOGLE_CALENDAR_ENABLED" = "true" ] && [ -f "$GCAL_CREDS" ]; then
|
|
|
158
158
|
export GOOGLE_WORKSPACE_CLI_KEYRING_BACKEND="file"
|
|
159
159
|
export GOOGLE_WORKSPACE_CLI_CONFIG_DIR="/tmp/gws"
|
|
160
160
|
mkdir -p /tmp/gws
|
|
161
|
+
# Regen runs as root (before gosu) on boot but gws runs as limbo later.
|
|
162
|
+
# Without this chown, gws gets "Permission denied (os error 13)".
|
|
163
|
+
chown limbo:limbo /tmp/gws 2>/dev/null || true
|
|
161
164
|
export GOOGLE_CALENDAR_ENABLED
|
|
162
165
|
|
|
163
166
|
node -e "
|