diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-10-30 15:23:53 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-10-30 15:23:53 +0000 |
commit | 103aa455aee322549c77aad205ce9e92dd7e6b52 (patch) | |
tree | f148de8f1e51edc19c875f60bec9ac1e3232a5eb /src/backend/installsrc.py | |
parent | 5fc5276d968a38d05fa5659c06392e83cc428516 (diff) |
move updateAll -> update
Diffstat (limited to 'src/backend/installsrc.py')
-rw-r--r-- | src/backend/installsrc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/installsrc.py b/src/backend/installsrc.py index 9b88974..374a215 100644 --- a/src/backend/installsrc.py +++ b/src/backend/installsrc.py @@ -11,11 +11,11 @@ import sisyphus.getenv import sisyphus.getfs import sisyphus.solvedeps import sisyphus.syncdb -import sisyphus.updateAll +import sisyphus.update def cliExec(pkgname): if sisyphus.checkenv.root(): - sisyphus.updateAll.cliExec() + sisyphus.update.cliExec() binhostURL = sisyphus.getenv.binhostURL() areBinaries,areSources,needsConfig = sisyphus.solvedeps.package(pkgname) |