Skip to content
This repository has been archived by the owner on May 22, 2019. It is now read-only.

Commit

Permalink
Forgot to create efi mount dir [zfs]
Browse files Browse the repository at this point in the history
  • Loading branch information
karasu committed Dec 12, 2016
1 parent e22441e commit a997ebe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cnchi/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

""" Set some Cnchi global constants """

CNCHI_VERSION = "0.14.203"
CNCHI_VERSION = "0.14.204"
CNCHI_WEBSITE = "http://www.antergos.com"
CNCHI_RELEASE_STAGE = "production"

Expand Down
1 change: 1 addition & 0 deletions cnchi/installation/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ def mount_partitions(self):
# partition (different from /boot partition). This happens if using
# EFI and grub2 bootloader
efi_path = os.path.join(DEST_DIR, "boot", "efi")
os.makedirs(efi_path, mode=0o755, exist_ok=True)
txt = _("Mounting EFI partition {0} into {1} directory").format(efi_partition, efi_path)
logging.debug(txt)
cmd = ['mount', efi_partition, efi_path]
Expand Down
2 changes: 1 addition & 1 deletion update.info
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
{"version":"0.14.203","files":[
{"version":"0.14.204","files":[
]}

0 comments on commit a997ebe

Please sign in to comment.