File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ export LC_ALL=C
3
3
set -e -o pipefail
4
4
export TZ=UTC
5
5
6
- # Althought Guix _does_ set umask when building its own packages (in our case,
6
+ # Although Guix _does_ set umask when building its own packages (in our case,
7
7
# this is all packages in manifest.scm), it does not set it for `guix
8
8
# environment`. It does make sense for at least `guix environment --container`
9
9
# to set umask, so if that change gets merged upstream and we bump the
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ def download_with_wget(remote_file, local_file=None):
51
51
if local_file :
52
52
wget_args = ['wget' , '-O' , local_file , remote_file ]
53
53
else :
54
- # use timestamping mechanism if local filename is not explicitely set
54
+ # use timestamping mechanism if local filename is not explicitly set
55
55
wget_args = ['wget' , '-N' , remote_file ]
56
56
57
57
result = subprocess .run (wget_args ,
@@ -85,7 +85,7 @@ def main(args):
85
85
print ("Error: need to specify a version on the command line" )
86
86
return 3
87
87
88
- # determine remote dir dependend on provided version string
88
+ # determine remote dir dependent on provided version string
89
89
version_base , version_rc , os_filter = parse_version_string (args [0 ])
90
90
remote_dir = f"/bin/{ VERSIONPREFIX } { version_base } /"
91
91
if version_rc :
You can’t perform that action at this time.
0 commit comments