Skip to content

Commit

Permalink
Fixed bug in debootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
f-prime committed Aug 24, 2016
1 parent 26f2931 commit 062af4e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.3.2

- Fixed bug in debootstrap that did not allow for the creating of an environment even with sudo

# 1.3.1

- Added `-m` flag for mounting directories into env
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Overview
=====

![](https://img.shields.io/badge/version-1.3.1-brightgreen.svg) [![](https://img.shields.io/badge/irc-%23coffer-red.svg)](https://webchat.freenode.net/) [![](https://img.shields.io/badge/twitter-cofferproject-blue.svg)](http://twitter.com/cofferproject)
![](https://img.shields.io/badge/version-1.3.2-brightgreen.svg) [![](https://img.shields.io/badge/irc-%23coffer-red.svg)](https://webchat.freenode.net/) [![](https://img.shields.io/badge/twitter-cofferproject-blue.svg)](http://twitter.com/cofferproject)

A lightweight platform for creating isolated and portable development environments.

Expand Down
2 changes: 1 addition & 1 deletion coffer/utils/setupEnv.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ def setup():
tarfile.open(path).extractall(path=root)
os.remove(path)
edit = open(root + "debootstrap/debootstrap").readlines()
edit[487] = "#" + edit[487]
edit[488] = "#" + edit[488]
edit[489] = "#" + edit[489]
edit[490] = "#" + edit[490]
edit = "".join(edit)
edit = "DEBOOTSTRAP_DIR={}\n".format(root + "debootstrap") + edit
with open(root + "debootstrap/debootstrap", 'w') as w:
Expand Down
2 changes: 1 addition & 1 deletion coffer/utils/text.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
settingUpEnv = "Setting up environment"
downloadingFiles = "Downloading necessary files"
version = "1.3.1"
version = "1.3.2"
helperText = """Coffer Help
coffer create <name> [-t <template> -v <ubuntu/debian version> -a <architecture> -r <repository>]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"entry_points" : {"console_scripts" : ["coffer=coffer.coffer:checkArgs"]},
"name" : "Coffer",
"packages" : ["coffer", "coffer.utils"],
"version" : "1.3.1",
"version" : "1.3.2",
}

setup(**kwargs)

0 comments on commit 062af4e

Please sign in to comment.