We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
lots of code uses:
tmpDir, err := os.MkdirTemp("", "MYDIR-*")
to create a tmp directory where save files, used by further steps. The tmp directories are deleted using:
defer os.RemoveAll(tmpDir)
making impossible to debug it. We should add a flag to disable the defer command
defer
The text was updated successfully, but these errors were encountered:
We could add a --keepTemp flag and hide it? The issue is that this should be used in 21 places and only 4 of them have access to global flags ATM.
--keepTemp
Sorry, something went wrong.
No branches or pull requests
lots of code uses:
to create a tmp directory where save files, used by further steps. The tmp directories are deleted using:
making impossible to debug it. We should add a flag to disable the
defer
commandThe text was updated successfully, but these errors were encountered: