mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-13 19:04:54 +01:00
Fix win32 Busybox compat
Greatly improves subprocess execution times. Just replace dependencies\windows\git\usr\bin\bash.exe with https://frippery.org/files/busybox/busybox.exe after merging.
This commit is contained in:
parent
ce9fcda773
commit
95cfeb0ab9
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ var _os = OS.get_name()
|
|||
|
||||
func _init():
|
||||
# Create required directories and move into the tmp directory.
|
||||
_cwd = "/tmp"
|
||||
_cwd = OS.get_user_data_dir() + "/tmp"
|
||||
run("mkdir -p '%s/repos'" % game.tmp_prefix)
|
||||
_cwd = game.tmp_prefix
|
||||
|
||||
|
|
Loading…
Reference in a new issue