Skip to content

Commit

Permalink
fix grep
Browse files Browse the repository at this point in the history
  • Loading branch information
geedo0 committed Aug 21, 2024
1 parent b82b12f commit 4bf6b95
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@ jobs:
useradd -g sshd -c 'sshd privsep' -d /var/empty -s /bin/false sshd
- name: experiment
run: |
env
echo $USER
echo $~USER
echo $HOME
echo ~
cat /etc/passwd | grep $USER | cut -d ':' -f6
echo ~$USER
# echo $HOME
# echo ~
cat /etc/passwd
grep $USER /etc/passwd | cut -d ':' -f6
exit -1
- name: Clone liboqs
run: ./oqs-scripts/clone_liboqs.sh
Expand Down

0 comments on commit 4bf6b95

Please sign in to comment.