LoginSignup
0
0

More than 3 years have passed since last update.

git_remote_codecommitが突然動かなくなる

Posted at

一行目にあるようにどうやらXcodeのpythonに依存しているらしい。今回はおそらくXcode12への自動更新によって、動かなくなってしまった。
/usr/local/bin/python3 で動かすようにしたら解決した。

git_remote_codecommit
#!/Applications/Xcode.app/Contents/Developer/usr/bin/python3
# -*- coding: utf-8 -*-
import re
import sys

from git_remote_codecommit import main

if __name__ == '__main__':
    sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
    sys.exit(main())
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0