diff options
| author | Ahmed Abdelhalim <[email protected]> | 2021-05-22 15:01:10 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2021-05-22 15:01:10 +0200 |
| commit | e4daf54466567ef354057ae653dccd7c267dd2b8 (patch) | |
| tree | 44c23a82f92d577892932c62666b66af3d57dfd0 | |
| parent | 709d2e4ac894b5e1c690208238324db0d03b62c7 (diff) | |
Use python3 static server instead of npx
| -rw-r--r-- | .bash_profile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.bash_profile b/.bash_profile index 1517c18..fd7713a 100644 --- a/.bash_profile +++ b/.bash_profile @@ -24,7 +24,7 @@ fi # ==== Aliases alias wttr='curl http://wttr.in/berlin' alias la='ls -a' -alias srv="npx http-server" # start simple server +alias srv="python3 -m http.server" # start simple server alias tagme='ctags -R --languages=ruby --exclude=.git --exclude=log . $(bundle list --paths)' alias skipci='git commit --allow-empty -m "--skip-ci"' alias rgpg='pkill pinentry-tty; gpg-connect-agent updatestartuptty /bye' |
