You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just noticed that if we leave the command "app:build" with a control + C, that actually clears the "box.json" file.
➜ git status
On branch master
Your branch is up to date with 'origin/master'.
nothing to commit, working tree clean
➜ php laracon-schedule app:build
Building process
Build version? [v1.3.0]:
> ^C^C
➜ git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: box.json
The text was updated successfully, but these errors were encountered:
I thought this was solved by this code where it should catch the usage of SIGINT and call the clear() method which should restore the original Box configuration. 🤔
The PCNTL extension should be enabled on macOS (if installed through Brew) by default afaik. Unless macOS overwrites the SIGINT flow when using Ctrl+C.
Just noticed that if we leave the command "app:build" with a control + C, that actually clears the "box.json" file.
The text was updated successfully, but these errors were encountered: