mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
7 lines
167 B
Bash
7 lines
167 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
find ./fixtures -type d -empty -delete
|
||
|
|
||
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
||
|
|
||
|
python3 $SCRIPT_DIR/del.py
|