mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-27 17:17:07 +08:00
7 lines
158 B
Bash
Executable File
7 lines
158 B
Bash
Executable File
#!/bin/bash
|
|
# Accepts a .pyx file path and deletes an associated .c file, if present.
|
|
filename="${1%.*}".c
|
|
if [ -e "$filename" ]; then
|
|
rm -f "$filename";
|
|
fi
|