mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-09 13:41:43 +00:00
pkg3: fix build when revision collides with a previous commit
This commit is contained in:
parent
296d049257
commit
006f8022c0
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ def main(argc, argv):
|
|||
# Parse arguments
|
||||
ams_dir = argv[1]
|
||||
target = '' if argv[2] == 'release' else ('_%s' % argv[2])
|
||||
revision = int(argv[3], 16)
|
||||
revision = int(argv[3][:8], 16)
|
||||
major = int(argv[4])
|
||||
minor = int(argv[5])
|
||||
micro = int(argv[6])
|
||||
|
|
Loading…
Reference in a new issue