wasmCloud / wasmcloud-dev-site

Documentation site for wasmCloud.dev
https://wasmcloud.dev
8 stars 15 forks source link

document requirement for bash-compatible shell #96

Open stevelr opened 2 years ago

stevelr commented 2 years ago

the makefiles in the examples project use mult-line commands such as the wash claims sign command:

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.

stevelr commented 2 years ago

This is not a make issue. The user was using GNU make version 4.3, the latest version. The problem is with the shell.