From 65e639671230aa013b2f36a9c5f17a6e5d861554 Mon Sep 17 00:00:00 2001 From: Ward from fusion-voyager-3 Date: Tue, 23 Jul 2024 11:45:45 +0300 Subject: [PATCH] fix path and autocomplete --- mainv3.sh | 2 +- pika-baseos/debian/changelog | 6 ++++++ pika-baseos/debian/control | 1 + pika-baseos/etc/profile.d/0-pika-path.sh | 2 ++ 4 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 pika-baseos/etc/profile.d/0-pika-path.sh diff --git a/mainv3.sh b/mainv3.sh index 57b191d..09721d0 100755 --- a/mainv3.sh +++ b/mainv3.sh @@ -18,7 +18,7 @@ cd ./pika-baseos apt-get build-dep ./ -y # Build package -LOGNAME=root dh_make --createorig -y -l -p pika-baseos_3.0.0 || echo "dh-make didn't go clean" +LOGNAME=root dh_make --createorig -y -l -p pika-baseos_3.0.1 || echo "dh-make didn't go clean" dpkg-buildpackage --no-sign # Move the debs to output diff --git a/pika-baseos/debian/changelog b/pika-baseos/debian/changelog index 087dced..894fff4 100644 --- a/pika-baseos/debian/changelog +++ b/pika-baseos/debian/changelog @@ -1,3 +1,9 @@ +pika-baseos (3.0.1-101pika1) pika; urgency=medium + + * fix autocomplete and PATH + + -- Ward Nakchbandi Thu, 12 Jan 2023 16:48:00 +030 + pika-baseos (3.0.0-101pika1) pika; urgency=medium * PikaOS 4 diff --git a/pika-baseos/debian/control b/pika-baseos/debian/control index b31c340..d354951 100644 --- a/pika-baseos/debian/control +++ b/pika-baseos/debian/control @@ -91,6 +91,7 @@ Depends: ${misc:Depends}, openssh-server, nano, bash-completion, + auto-complete-el, wget, curl, git, diff --git a/pika-baseos/etc/profile.d/0-pika-path.sh b/pika-baseos/etc/profile.d/0-pika-path.sh new file mode 100644 index 0000000..5407075 --- /dev/null +++ b/pika-baseos/etc/profile.d/0-pika-path.sh @@ -0,0 +1,2 @@ +#! /bin/sh +export PATH="/usr/local/sbin:/usr/local/bin:/usr/local/libexec:/usr/sbin:/usr/bin:/sbin:/bin:/usr/libexec:/usr/local/games:/usr/games:$PATH" \ No newline at end of file