mirror of
https://github.com/fosrl/docs.git
synced 2025-05-12 21:30:43 +01:00
Use ` because of the JS string interpolation
This commit is contained in:
parent
a927168971
commit
f9b45ffa61
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ const WgetQuickInstall: React.FC = () => {
|
|||
(async () => {
|
||||
const release = await fetchLatestRelease("fosrl/pangolin");
|
||||
setText(
|
||||
'wget -O installer "https://github.com/fosrl/pangolin/releases/download/${release}/installer_linux_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/')" && chmod +x ./installer'
|
||||
`wget -O installer "https://github.com/fosrl/pangolin/releases/download/${release}/installer_linux_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/')" && chmod +x ./installer`
|
||||
);
|
||||
})();
|
||||
}, []);
|
||||
|
|
Loading…
Reference in a new issue