Compare commits

...

2 Commits

Author SHA1 Message Date
flightlessmango 1e13c385fe build.sh: add steamos to arch 4 weeks ago
flightlessmango 291ffd263c shell: fix spdlog error typo for writing 4 weeks ago

@ -54,7 +54,7 @@ dependencies() {
for i in $DISTRO; do
echo "# Checking dependencies for \"$i\""
case $i in
*arch*|*manjaro*|*artix*)
*arch*|*manjaro*|*artix*|*SteamOS*)
MANAGER_QUERY="pacman -Q"
MANAGER_INSTALL="pacman -S"
DEPS="{${DEPS_ARCH}}"

@ -86,7 +86,7 @@ std::string Shell::exec(std::string cmd) {
void Shell::writeCommand(const std::string& command) {
if (write(to_shell[1], command.c_str(), command.length()) == -1)
SPDLOG_ERROR("Failed exit shell");
SPDLOG_ERROR("Failed to write to shell");
}
Shell::~Shell() {

Loading…
Cancel
Save