Skip to content
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

Open
gbourant opened this issue Mar 13, 2025 · 6 comments
Open

input_prompt is not working inside functions #687

gbourant opened this issue Mar 13, 2025 · 6 comments
Labels
bug Something isn't working stdlib

Comments

@gbourant
Copy link

gbourant commented Mar 13, 2025

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 the echo "name: {name}" prints name: if [ $(.

#!/usr/bin/env amber

import { input_prompt } from "std/env"

fun installer() {
    const name = input_prompt("Please enter your name:");
    echo "name: {name}"
}

main (args) {
    installer()
}
@gbourant gbourant added the bug Something isn't working label Mar 13, 2025
@github-project-automation github-project-automation bot moved this to 🆕 New in Amber Project Mar 13, 2025
@gbourant
Copy link
Author

I tried the given example and it works. Something else is happening.

After I have compiled the above script, I use it as follows curl 'URL-TO-TRANSPILED-BASH-SCRIPT' | bash. So the input_prompt is not working when the script is passed as piped to the bash command.

If I download the script and then execute bash downloaded-script.sh the prompt works.

@gbourant
Copy link
Author

relative: https://stackoverflow.com/a/61840469

@gbourant
Copy link
Author

gbourant commented Mar 13, 2025

I was able to read via the curl | bash with const name = trust $ name=\$(bash -c 'read -p "Input Your Name: " name && echo \$name' < /dev/tty); echo \$name $

@Mte90
Copy link
Member

Mte90 commented Mar 17, 2025

So just to understand it is an issue with the stdlib or it is the way you used that function?

pub fun input_prompt(prompt: Text): Text {

This is the bash code we have right now maybe we can improve it to cover also this edge case

@Mte90 Mte90 added the stdlib label Mar 17, 2025
@gbourant
Copy link
Author

Assume you have the following amber-lang archlinux.ab script.

#!/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 amber run archlinux.ab everything works, it will ask you the prompt "Please enter your name"

Image

Now build the archlinux.ab via amber build archlinux.ab and it will produce the archlinux.sh

If you run the archlinux.sh, everything still works as expected.

Image

Now if you try to run the bash script via cat archlinux.sh | bash, it won't ask you for the prompt.

Image

It has something to do with the tty and the pipe (not sure what) but I was able to read user input when I'm using a pipe via const name = trust $ name=\$(bash -c 'read -p "Input Your Name: " name && echo \$name' < /dev/tty); echo \$name $

@gbourant
Copy link
Author

Alright, I changed the method that you pointed by adding < /dev/tty and it works.

Image

fun my_print(prompt: Text): Text {
    trust $ read -p "\${nameof prompt}" < /dev/tty $
    return "\$REPLY"
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working stdlib
Projects
None yet
Development

No branches or pull requests

2 participants