aboutsummaryrefslogtreecommitdiff
path: root/src/libcmd/command.hh
diff options
context:
space:
mode:
authorBen Burdette <bburdette@users.noreply.github.com>2022-07-11 11:29:22 -0600
committerGitHub <noreply@github.com>2022-07-11 11:29:22 -0600
commitcdcc3490720ef84d301c256605bcf34846bd1c1b (patch)
tree890aca90feb1f16c186083d53abedab598053a45 /src/libcmd/command.hh
parenta3629ab0ccd40a4492ac99424d84b3649df8b057 (diff)
parent545383208e100e68bc74680b14d2081cf2f0a715 (diff)
Merge branch 'master' into ignore-try
Diffstat (limited to 'src/libcmd/command.hh')
-rw-r--r--src/libcmd/command.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libcmd/command.hh b/src/libcmd/command.hh
index 2c930dcb7..6bd38810b 100644
--- a/src/libcmd/command.hh
+++ b/src/libcmd/command.hh
@@ -117,12 +117,13 @@ struct InstallablesCommand : virtual Args, SourceExprCommand
InstallablesCommand();
void prepare() override;
+ Installables load();
virtual bool useDefaultInstallables() { return true; }
std::optional<FlakeRef> getFlakeRefForCompletion() override;
-private:
+protected:
std::vector<std::string> _installables;
};