Open stevelr opened 2 years ago
the makefiles in the examples project use mult-line commands such as the wash claims sign command:
wash claims sign
wash claims sign target/wasm32-unknown-unknown/release/hello.wasm \ -c wasmcloud:httpserver \ --name hello --ver 0.1.2 --rev 0 \ --call-alias wasmcloud_example_hello \ --destination build/hello_s.wasm
The \ used for line continuation doesn't work in windows 10 Powershell, so the command make fails. If you start bash (or the shell from the "Git bash" package), and then run make, it works.
\
make
This is not a make issue. The user was using GNU make version 4.3, the latest version. The problem is with the shell.
the makefiles in the examples project use mult-line commands such as the
wash claims sign
command:The
\
used for line continuation doesn't work in windows 10 Powershell, so the commandmake
fails. If you start bash (or the shell from the "Git bash" package), and then runmake
, it works.