#!/bin/sh
+# SPDX-FileCopyrightText: 2021 Melissa LeBlanc-Williams for Adafruit Industries
+#
+# SPDX-License-Identifier: MIT
 PORT=/dev/ttyUSB0
 
 export MPYCROSS=`realpath ../../../micropython/mpy-cross/mpy-cross`
     xargs -n1 -I {} sh -c "echo compiling {} ...; ${MPYCROSS} {}"
 # upload adafruit blinka .mpy files
 find . -type f -name '*.mpy' | \
-    xargs -n1 -I {} sh -c "echo uploading {} ...; ampy --port ${PORT} put {} {}"
\ No newline at end of file
+    xargs -n1 -I {} sh -c "echo uploading {} ...; ampy --port ${PORT} put {} {}"