mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
updated the uniq.yaml workflow to be case insensitive
This commit is contained in:
parent
dbf50c690f
commit
9cdef9ceb4
2 changed files with 3 additions and 2 deletions
4
.github/workflows/uniq.yaml
vendored
4
.github/workflows/uniq.yaml
vendored
|
@ -18,5 +18,5 @@ jobs:
|
||||||
- name: check unique keys in dic files
|
- name: check unique keys in dic files
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
find . -type f -name "*.dic" | xargs -I {} sh -c "echo {} && cat {} | sed 's/ *#.*//;/^$/d' | sort | uniq -i -d -c | sort -n -r "
|
find . -type f -name "*.dic" | xargs -I {} sh -c "echo {} && cat {} | sed 's/ *#.*//;/^$/d' | sed 's/\(.*\)/\U\1/' | sort | uniq -i -d -c | sort -n -r "
|
||||||
if [[ $(find . -type f -name "*.dic" | xargs -I {} sh -c "echo {} && cat {} | sed 's/ *#.*//;/^$/d' | sort | uniq -i -d -c | sort -n -r " | grep -v '^\./' | wc -l) -gt 0 ]]; then exit 1; fi
|
if [[ $(find . -type f -name "*.dic" | xargs -I {} sh -c "echo {} && cat {} | sed 's/ *#.*//;/^$/d' | sed 's/\(.*\)/\U\1/' | sort | uniq -i -d -c | sort -n -r " | grep -v '^\./' | wc -l) -gt 0 ]]; then exit 1; fi
|
||||||
|
|
|
@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file.
|
||||||
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
||||||
|
|
||||||
## [unreleased][unreleased]
|
## [unreleased][unreleased]
|
||||||
|
- Changed `uniq.yaml` workflow to be case-insensitive (@iceman1001)
|
||||||
- Fixed `mem load --mfc` not erasing all SPI flash blocks after extending to 4095 keys (@piotrva)
|
- Fixed `mem load --mfc` not erasing all SPI flash blocks after extending to 4095 keys (@piotrva)
|
||||||
- Extended area for Mifare keys in SPI flash to hold 4095 keys (@piotrva)
|
- Extended area for Mifare keys in SPI flash to hold 4095 keys (@piotrva)
|
||||||
- Fixed DESFire D40 secure channel crypto (@nvx)
|
- Fixed DESFire D40 secure channel crypto (@nvx)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue