Skip to content

Commit

Permalink
Update command lists
Browse files Browse the repository at this point in the history
  • Loading branch information
Grimler91 committed Jan 3, 2022
1 parent 2f4f93f commit 219687f
Show file tree
Hide file tree
Showing 16 changed files with 1,440 additions and 75 deletions.
24 changes: 12 additions & 12 deletions command-not-found.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,41 +26,41 @@ using namespace std;

list<string> main_commands = {
#ifdef __aarch64__
# include "termux-packages/commands-aarch64-8a0c4d4.h"
# include "termux-packages/commands-aarch64-026b032.h"
#elif defined __arm__
# include "termux-packages/commands-arm-8a0c4d4.h"
# include "termux-packages/commands-arm-026b032.h"
#elif defined __i686__
# include "termux-packages/commands-i686-8a0c4d4.h"
# include "termux-packages/commands-i686-026b032.h"
#elif defined __x86_64__
# include "termux-packages/commands-x86_64-8a0c4d4.h"
# include "termux-packages/commands-x86_64-026b032.h"
#else
# error Failed to detect arch
#endif
};

list<string> root_commands = {
#ifdef __aarch64__
# include "termux-root-packages/commands-aarch64-9d2897b.h"
# include "termux-root-packages/commands-aarch64-4cb200b.h"
#elif defined __arm__
# include "termux-root-packages/commands-arm-9d2897b.h"
# include "termux-root-packages/commands-arm-4cb200b.h"
#elif defined __i686__
# include "termux-root-packages/commands-i686-9d2897b.h"
# include "termux-root-packages/commands-i686-4cb200b.h"
#elif defined __x86_64__
# include "termux-root-packages/commands-x86_64-9d2897b.h"
# include "termux-root-packages/commands-x86_64-4cb200b.h"
#else
# error Failed to detect arch
#endif
};

list<string> x11_commands = {
#ifdef __aarch64__
# include "x11-packages/commands-aarch64-3500307.h"
# include "x11-packages/commands-aarch64-0a39dd9.h"
#elif defined __arm__
# include "x11-packages/commands-arm-3500307.h"
# include "x11-packages/commands-arm-0a39dd9.h"
#elif defined __i686__
# include "x11-packages/commands-i686-3500307.h"
# include "x11-packages/commands-i686-0a39dd9.h"
#elif defined __x86_64__
# include "x11-packages/commands-x86_64-3500307.h"
# include "x11-packages/commands-x86_64-0a39dd9.h"
#else
# error Failed to detect arch
#endif
Expand Down
Loading

0 comments on commit 219687f

Please sign in to comment.