Completely remove first install flag
This commit is contained in:
parent
3d7c5fc6d6
commit
ed33809680
1 changed files with 2 additions and 13 deletions
15
install.py
15
install.py
|
@ -22,7 +22,6 @@ class Installer:
|
||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
config: str,
|
config: str,
|
||||||
first_install: bool = False,
|
|
||||||
force: bool = False,
|
force: bool = False,
|
||||||
hide_commands: bool = False,
|
hide_commands: bool = False,
|
||||||
update: bool = False,
|
update: bool = False,
|
||||||
|
@ -32,7 +31,6 @@ class Installer:
|
||||||
yaml = YAML(typ="safe")
|
yaml = YAML(typ="safe")
|
||||||
self.conf = yaml.load(Path(config).text())
|
self.conf = yaml.load(Path(config).text())
|
||||||
self.force = force
|
self.force = force
|
||||||
self.first_install = first_install
|
|
||||||
self.hide_commands = hide_commands
|
self.hide_commands = hide_commands
|
||||||
self.home = Path("~").expanduser()
|
self.home = Path("~").expanduser()
|
||||||
self.operating_system = self.define_os()
|
self.operating_system = self.define_os()
|
||||||
|
@ -138,8 +136,6 @@ class Installer:
|
||||||
"debian": self.operating_system == "debian",
|
"debian": self.operating_system == "debian",
|
||||||
"force": self.force,
|
"force": self.force,
|
||||||
"no force": not self.force,
|
"no force": not self.force,
|
||||||
"first install": self.first_install,
|
|
||||||
"no first install": not self.first_install,
|
|
||||||
"update": self.update,
|
"update": self.update,
|
||||||
"no update": not self.update,
|
"no update": not self.update,
|
||||||
}
|
}
|
||||||
|
@ -394,7 +390,8 @@ class Installer:
|
||||||
if not content.endswith("\n"):
|
if not content.endswith("\n"):
|
||||||
content += "\n"
|
content += "\n"
|
||||||
|
|
||||||
p_dest.write_text(content, append=append)
|
if not p_dest.exists() or content not in p_dest.read_text():
|
||||||
|
p_dest.write_text(content, append=append)
|
||||||
|
|
||||||
def process(self, programs: Optional[List[str]] = None) -> None:
|
def process(self, programs: Optional[List[str]] = None) -> None:
|
||||||
"""Install the programs provided.
|
"""Install the programs provided.
|
||||||
|
@ -474,12 +471,6 @@ def main() -> None:
|
||||||
"--config",
|
"--config",
|
||||||
help="Use CONFIG file (default: 'configs.yml')",
|
help="Use CONFIG file (default: 'configs.yml')",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
|
||||||
"-i",
|
|
||||||
"--first_install",
|
|
||||||
action="store_true",
|
|
||||||
help="Assume the program is not installed",
|
|
||||||
)
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"-f",
|
"-f",
|
||||||
"--force",
|
"--force",
|
||||||
|
@ -526,7 +517,6 @@ def main() -> None:
|
||||||
else:
|
else:
|
||||||
config = "configs.yml"
|
config = "configs.yml"
|
||||||
|
|
||||||
first_install = args.first_install
|
|
||||||
force = args.force
|
force = args.force
|
||||||
generate = args.generate
|
generate = args.generate
|
||||||
hide_commands = args.hide_commands
|
hide_commands = args.hide_commands
|
||||||
|
@ -536,7 +526,6 @@ def main() -> None:
|
||||||
|
|
||||||
installer = Installer(
|
installer = Installer(
|
||||||
config=config,
|
config=config,
|
||||||
first_install=first_install,
|
|
||||||
force=force,
|
force=force,
|
||||||
hide_commands=hide_commands,
|
hide_commands=hide_commands,
|
||||||
update=update,
|
update=update,
|
||||||
|
|
Loading…
Add table
Reference in a new issue