@ -1,6 +1,6 @@
#!/usr/bin/env bash
#!/usr/bin/env bash
#
#
# Minio Cloud Storage, (C) 2015, 2016 Minio, Inc.
# Minio Cloud Storage, (C) 2015-2018 Minio, Inc.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# you may not use this file except in compliance with the License.
@ -16,7 +16,8 @@
#
#
main( ) {
main( ) {
IFS = ':' read -r -a paths <<< " $GOPATH "
gopath = $( go env GOPATH)
IFS = ':' read -r -a paths <<< " $gopath "
for path in " ${ paths [@] } " ; do
for path in " ${ paths [@] } " ; do
minio_path = " $path /src/github.com/minio/minio "
minio_path = " $path /src/github.com/minio/minio "
if [ -d " $minio_path " ] ; then
if [ -d " $minio_path " ] ; then
@ -27,7 +28,7 @@ main() {
done
done
echo "ERROR"
echo "ERROR"
echo " Project not found in ${ GOPATH } . "
echo " Project not found in ${ gopath } . "
echo "Follow instructions at https://github.com/minio/minio/blob/master/CONTRIBUTING.md#setup-your-minio-github-repository"
echo "Follow instructions at https://github.com/minio/minio/blob/master/CONTRIBUTING.md#setup-your-minio-github-repository"
exit 1
exit 1
}
}