Mac OS with zsh - CompressFiles never ends
See original GitHub issueThanks for this package, this is really great.
I am working on some improvements for a project of mine and I have found a problem with the build command.
The CompressFiles function freeze and never finish.
After doing some search, I have found that setting shell = FALSE
for the function RunCommand
fix the issue.
def RunCommand (commands):
process = subprocess.Popen (commands, stdout = subprocess.PIPE, stderr = subprocess.PIPE, shell = False)
out, err = process.communicate ()
if process.returncode != 0:
print (out.decode ())
print (err.decode ())
return process.returncode
I am on Mac with iTerm2 and ZSH.
Issue Analytics
- State:
- Created 2 years ago
- Comments:8 (6 by maintainers)
Top Results From Across the Web
Compress files from OS X terminal? - macos - Super User
In the Finder, there is this wonderful ability to right click on a file or directory, select compress from the drop-down, and end...
Read more >Compress and uncompress file archives in Terminal on Mac
If the archive isn't compressed, it usually just ends in .tar. Tip: It's easier to compress or uncompress files directly in the Finder...
Read more >Compress files & folder in the Terminal Command Line in ...
How to compress and uncompress files and folders in macOS via the Terminal/command line using zip, tar.gz, tar.bz2 and dmg formats.
Read more >Compress without .DS_Store and __MACOSX - Ask Different
I am looking for a solution by context menu if possible. Is there any solution that you can recommend for clean compressing? macos...
Read more >zip(1): package/compress files - Linux man page
For a brief help on zip and unzip, run each without specifying any ... If a file list is specified as -@ [Not...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Done in release 0.7.8.
Ok then, I’ll stop investigation and commit this fix soon.