Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 550 Bytes

File metadata and controls

26 lines (21 loc) · 550 Bytes

Contributing to ExifTool WASM Service

Thank you for helping improve this project!

Quick Setup

git clone https://github.com/example/goexiftool.git
cd goexiftool
make setup
#!/usr/bin/env bash
# ==============================================================
# ExifTool WASM Service – shar Part 2 of 3
# ==============================================================

set -e
TOP="$(pwd)/goexiftool"
cd "$TOP"

mkdir -p .githooks

cat > .githooks/pre-commit <<'EOF'
#!/usr/bin/env bash
set -e
make fmt
make lint
make test