0
0
Fork 0
mirror of https://github.com/schollz/croc.git synced 2025-10-11 13:21:00 +02:00

Merge pull request #742 from ryancdotorg/main

correct classic mode prompt
This commit is contained in:
Zack 2024-06-22 08:26:12 -07:00 committed by GitHub
commit 791e4c22d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -143,7 +143,7 @@ multi-user system, this will help ensure that other local users cannot
access the shared secret and receive the files instead of the intended access the shared secret and receive the files instead of the intended
recipient. recipient.
Do you wish to continue to DISABLE the classic mode? (Y/n) `) Do you wish to continue to DISABLE the classic mode? (y/N) `)
choice := strings.ToLower(utils.GetInput("")) choice := strings.ToLower(utils.GetInput(""))
if choice == "y" || choice == "yes" { if choice == "y" || choice == "yes" {
os.Remove(classicFile) os.Remove(classicFile)