grim/youtrack-import

file isExecutable
Fix the maxIssues bug where if you didn't specify a number of issues to import it didn't import any issues.
#!/bin/bash -e
go build
echo -n "deleting project \"${1}\" ... "
curl -X DELETE -H "Authorization: Bearer ${YOUTRACK_TOKEN}" "${YOUTRACK_URL}rest/admin/project/${1}"
echo "done."
time ./youtrack-import --project-id="${1}" --project-name="${2}" trac "${3}" "--import-users=${4}" -x 3000