mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 15:52:08 -04:00
10 lines
172 B
Bash
10 lines
172 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
uname_output=$(/bin/uname_orig "$@")
|
|
|
|
if [ "$UNAME_FAKE_32BITS" = true ]; then
|
|
uname_output="${uname_output//x86_64/i686}"
|
|
fi
|
|
|
|
echo "$uname_output"
|