Skip to content
Snippets Groups Projects

Version 1.3.1

1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -469,8 +469,8 @@ if [ $# -gt 0 ]; then
echo "Creating a new .env file..."
answer=false
while [ "$answer" = false ]; do
read -pr "Please type laboratory/institution identifier: " identifier
read -pr "Is $identifier correct?[y/n] " -n 1 -r
read -r -p "Please type laboratory/institution identifier: " identifier
read -r -p "Is $identifier correct?[y/n] " -n 1
if [[ $REPLY =~ ^[Yy]$ ]]
then
echo "ID=$identifier" > .env
Loading