mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01:00
99dc8510fc
* chore: test e2e * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: update name * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: test * chore: this should fails * chore: restore config
15 lines
266 B
Bash
15 lines
266 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
HERE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
|
|
TEMP_DIR="$(mktemp -d)"
|
|
|
|
cd "${TEMP_DIR}"
|
|
|
|
echo $TEMP_DIR
|
|
echo $HERE_DIR
|
|
|
|
git config --global user.email "you@example.com"
|
|
git config --global user.name "John Doe"
|