-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
input_prompt is not working inside functions #687
Comments
I tried the given example and it works. Something else is happening. After I have compiled the above script, I use it as follows If I download the script and then execute |
relative: https://stackoverflow.com/a/61840469 |
I was able to read via the |
So just to understand it is an issue with the stdlib or it is the way you used that function? Line 66 in d3ceda3
This is the bash code we have right now maybe we can improve it to cover also this edge case |
Assume you have the following amber-lang #!/usr/bin/env amber
import { input_prompt } from "std/env"
const name = input_prompt("Please enter your name:");
echo "name: {name}" If run it via Now build the If you run the Now if you try to run the bash script via It has something to do with the |
I try to run the
input_prompt
inside a function and it's not working. When I run this script directly, it doesn't ever show or ask for a prompt, but theecho "name: {name}"
printsname: if [ $(
.The text was updated successfully, but these errors were encountered: