replace reference to "README" with "docs" to avoid confusion for folks who do not have access to README (#866)

This commit is contained in:
Olcan 2025-06-08 19:19:33 -07:00 committed by GitHub
parent 37edbd8c18
commit a3d11e8fef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ export const Footer: React.FC<FooterProps> = ({
</Text> </Text>
) : ( ) : (
<Text color={Colors.AccentRed}> <Text color={Colors.AccentRed}>
no sandbox <Text color={Colors.Gray}>(see README)</Text> no sandbox <Text color={Colors.Gray}>(see docs)</Text>
</Text> </Text>
)} )}
</Box> </Box>

View File

@ -16,7 +16,7 @@
set -euo pipefail set -euo pipefail
if ! scripts/sandbox_command.sh -q; then if ! scripts/sandbox_command.sh -q; then
echo "ERROR: sandboxing disabled. See README.md to enable sandboxing." echo "ERROR: sandboxing disabled. See docs to enable sandboxing."
exit 1 exit 1
fi fi
@ -100,4 +100,4 @@ fi
# run command in sandbox # run command in sandbox
exec_args+=("$SANDBOX" "${cmd[@]}") exec_args+=("$SANDBOX" "${cmd[@]}")
$CMD exec "${exec_args[@]}" $CMD exec "${exec_args[@]}"