datawire / forge

Define and run multi-container apps in Kubernetes
http://forge.sh
Apache License 2.0
415 stars 43 forks source link

Error installing forge following tutorial instructions #220

Open Gabrielbdd opened 5 years ago

Gabrielbdd commented 5 years ago

Steps to reproduce

Just run the commands as documentation says

curl https://s3.amazonaws.com/datawire-static-files/forge/$(curl https://s3.amazonaws.com/datawire-static-files/forge/latest.url)/forge -o /tmp/forge
chmod a+x /tmp/forge
sudo mv /tmp/forge /usr/local/bin

Output

datawire-static-files/forge/latest.url\)/forge -o /tmp/forge
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   283    0   283    0     0     17      0 --:--:--  0:00:16 --:--:--    76
<?xml version="1.0" encoding="UTF-8"?>
<Error><Code>NoSuchKey</Code><Message>The specified key does not exist.</Message><Key>forge/latest.url)/forge</Key><RequestId>2A23E5C932DBB1E3</RequestId><HostId>oHOHaJ7kGPvG0mVNIxtJM3wICYql9WEntHkt2bhvrQwM10nPmCqXhaHOdHa87ducrzPEJbVODtY=</HostId></Error>%
Gabrielbdd commented 5 years ago

I got my mistake, when copying and pasting in the terminal from the instructions, escape characters are added in parentheses, transforming: bash curl https://s3.amazonaws.com/datawire-static-files/forge/$(curl https://s3.amazonaws.com/datawire-static-files/forge/latest.url)/forge -o /tmp/forge to: bash curl https://s3.amazonaws.com/datawire-static-files/forge/$\(curl https://s3.amazonaws.com/datawire-static-files/forge/latest.url\)/forge -o /tmp/forge It's not an issue, sorry guys