Skip to content
Snippets Groups Projects
Unverified Commit cc11d7ad authored by anarcat's avatar anarcat
Browse files

fix NEW invocation

parent a0592b04
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ The short version is:
FINGERPRINT=0123456789ABCDEF0123456789ABCDEF01234567 &&
NEW_USER=alice &&
REQUESTOR=bob &&
./NEW "$NEW_USER" "$FINGERPRINT" &&
./NEW "$FINGERPRINT" "$NEW_USER" &&
git add "${NEW_USER}-${FINGERPRINT}.gpg" &&
git commit -m"new user ${NEW_USER} requested by ${REQUESTOR}" &&
git push &&
......@@ -54,7 +54,7 @@ For example, your laptop.
FINGERPRINT=0123456789ABCDEF0123456789ABCDEF01234567
NEW_USER=alice
REQUESTOR=bob
./NEW "$NEW_USER" "$FINGERPRINT" &&
./NEW "$FINGERPRINT" "$NEW_USER" &&
git add "${NEW_USER}-${FINGERPRINT}.gpg" &&
git commit -m"new user ${NEW_USER} requested by ${REQUESTOR}"
......
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