mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
core/filesystem to 2020.05.03-1
This commit is contained in:
parent
06cf3b20a9
commit
32da746657
3 changed files with 12 additions and 7 deletions
|
@ -5,8 +5,8 @@
|
|||
# - modifed os-release
|
||||
|
||||
pkgname=filesystem
|
||||
pkgver=2019.10
|
||||
pkgrel=2
|
||||
pkgver=2020.05.03
|
||||
pkgrel=1
|
||||
pkgdesc='Base Arch Linux files'
|
||||
arch=('x86_64')
|
||||
license=('GPL')
|
||||
|
@ -32,9 +32,9 @@ md5sums=('5fa6674df7645d7f5895f2d12b4ef4e9'
|
|||
'580cf8b59eebfaac4fad373ffadc9912'
|
||||
'd41d8cd98f00b204e9800998ecf8427e'
|
||||
'981ee4d7e506a9d6d9ed2d872e16004b'
|
||||
'ea896754946ab807b4b69d59080a1007'
|
||||
'6d1a528e1e3d259c7c262eb9e37a0f5f'
|
||||
'5182ac38a0de85da8ade93ef71975ca4'
|
||||
'2c79e1762978235e7b4a9ef595f6c029'
|
||||
'7b208a630a548740e0f4cd368badae23'
|
||||
'0ee015fad07732676d9488ae498eed41'
|
||||
'f04bcb2803afc4dcb95670fe87343b4d'
|
||||
'f64466dd77c7bec37a8b47681468211a'
|
||||
|
|
|
@ -3,7 +3,7 @@ PRETTY_NAME="Arch Linux ARM"
|
|||
ID=archarm
|
||||
ID_LIKE=arch
|
||||
BUILD_ID=rolling
|
||||
ANSI_COLOR="0;36"
|
||||
ANSI_COLOR="38;2;23;147;209"
|
||||
HOME_URL="https://archlinuxarm.org/"
|
||||
DOCUMENTATION_URL="https://archlinuxarm.org/wiki"
|
||||
SUPPORT_URL="https://archlinuxarm.org/forum"
|
||||
|
|
|
@ -28,8 +28,13 @@ if test -d /etc/profile.d/; then
|
|||
unset profile
|
||||
fi
|
||||
|
||||
# Source global bash config
|
||||
if test "$PS1" && test "$BASH" && test -z ${POSIXLY_CORRECT+x} && test -r /etc/bash.bashrc; then
|
||||
# Source global bash config, when interactive but not posix or sh mode
|
||||
if test "$BASH" &&\
|
||||
test "$PS1" &&\
|
||||
test -z "$POSIXLY_CORRECT" &&\
|
||||
test "${0#-}" != sh &&\
|
||||
test -r /etc/bash.bashrc
|
||||
then
|
||||
. /etc/bash.bashrc
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue