소스 검색

Update URL to self

..after moving out from GitHub
Alois Mahdal 5 년 전
부모
커밋
a0aeaa6ab1
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      dotfiles/bash/setup

+ 2
- 2
dotfiles/bash/setup 파일 보기

@@ -4,14 +4,14 @@ put() {
4 4
     echo "$1" >> "$HOME/.bashrc"
5 5
 }
6 6
 
7
-mark="# added by https://github.com/AloisMahdal/mydots"
7
+mark="# added by https://gitea.vornet.cz/netvor/mydots"
8 8
 if grep -qFe "$mark" "$HOME/.bashrc";
9 9
 then
10 10
     echo "already set up, giving up";
11 11
     exit 1;
12 12
 else
13 13
     put ''
14
-    put '# added by https://github.com/AloisMahdal/mydots'
14
+    put '# added by https://gitea.vornet.cz/netvor/mydots'
15 15
     put 'test -f "${HOME}/.bash/head.bashrc" \'
16 16
     put ' && . "${HOME}/.bash/head.bashrc"'
17 17
 fi