Skip to content
Snippets Groups Projects
Commit 47e16614 authored by Sébastien Luttringer's avatar Sébastien Luttringer
Browse files

implement FS#66217

- fix FS#66499
parent 37f24f0d
No related branches found
No related tags found
No related merge requests found
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
# Contributor: Tom Gundersen <teg@jklm.no> # Contributor: Tom Gundersen <teg@jklm.no>
pkgname=filesystem pkgname=filesystem
pkgver=2019.10 pkgver=2020.05
pkgrel=2 pkgrel=1
pkgdesc='Base Arch Linux files' pkgdesc='Base Arch Linux files'
arch=('x86_64') arch=('x86_64')
license=('GPL') license=('GPL')
...@@ -29,9 +29,9 @@ md5sums=('5fa6674df7645d7f5895f2d12b4ef4e9' ...@@ -29,9 +29,9 @@ md5sums=('5fa6674df7645d7f5895f2d12b4ef4e9'
'580cf8b59eebfaac4fad373ffadc9912' '580cf8b59eebfaac4fad373ffadc9912'
'd41d8cd98f00b204e9800998ecf8427e' 'd41d8cd98f00b204e9800998ecf8427e'
'981ee4d7e506a9d6d9ed2d872e16004b' '981ee4d7e506a9d6d9ed2d872e16004b'
'e0d8ea1d1a11992dbe9f6550cc14eaa5' '173371ea3ac7817fdec6a726e3996067'
'5182ac38a0de85da8ade93ef71975ca4' '5182ac38a0de85da8ade93ef71975ca4'
'2c79e1762978235e7b4a9ef595f6c029' '61433fae7da1157ef299734f9c197d4a'
'0ee015fad07732676d9488ae498eed41' '0ee015fad07732676d9488ae498eed41'
'f04bcb2803afc4dcb95670fe87343b4d' 'f04bcb2803afc4dcb95670fe87343b4d'
'f64466dd77c7bec37a8b47681468211a' 'f64466dd77c7bec37a8b47681468211a'
......
...@@ -2,7 +2,7 @@ NAME="Arch Linux" ...@@ -2,7 +2,7 @@ NAME="Arch Linux"
PRETTY_NAME="Arch Linux" PRETTY_NAME="Arch Linux"
ID=arch ID=arch
BUILD_ID=rolling BUILD_ID=rolling
ANSI_COLOR="0;36" ANSI_COLOR="38;2;23;147;209"
HOME_URL="https://www.archlinux.org/" HOME_URL="https://www.archlinux.org/"
DOCUMENTATION_URL="https://wiki.archlinux.org/" DOCUMENTATION_URL="https://wiki.archlinux.org/"
SUPPORT_URL="https://bbs.archlinux.org/" SUPPORT_URL="https://bbs.archlinux.org/"
......
...@@ -28,8 +28,8 @@ if test -d /etc/profile.d/; then ...@@ -28,8 +28,8 @@ if test -d /etc/profile.d/; then
unset profile unset profile
fi fi
# Source global bash config # Source global bash config, when interactive but not posix or sh mode
if test "$PS1" && test "$BASH" && test -z ${POSIXLY_CORRECT+x} && test -r /etc/bash.bashrc; then if test "$BASH" -a "$PS1" -a -z "$POSIXLY_CORRECT" -a "${0#-}" != sh -a -r /etc/bash.bashrc; then
. /etc/bash.bashrc . /etc/bash.bashrc
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment