Skip to content
Snippets Groups Projects
Commit b68b40c1 authored by Luke Hinds's avatar Luke Hinds
Browse files

Module path cleanup

parent 4c113a67
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ import (
"time"
"github.com/google/trillian"
"github.com/lukehinds/rekor/log"
"github.com/projectrekor/rekor-cli/log"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"google.golang.org/grpc"
......
......@@ -23,7 +23,7 @@ import (
"time"
"github.com/google/trillian"
"github.com/lukehinds/rekor/log"
"github.com/projectrekor/rekor-cli/log"
"github.com/spf13/viper"
"google.golang.org/grpc"
......
......@@ -23,7 +23,7 @@ import (
"time"
"github.com/google/trillian"
"github.com/lukehinds/rekor/log"
"github.com/projectrekor/rekor-cli/log"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"google.golang.org/grpc"
......
......@@ -21,7 +21,7 @@ import (
"fmt"
"time"
"github.com/lukehinds/rekor/log"
"github.com/projectrekor/rekor-cli/log"
"github.com/google/trillian"
"github.com/google/trillian/client"
......
......@@ -15,7 +15,7 @@ limitations under the License.
*/
package main
import "github.com/lukehinds/rekor/cmd"
import "github.com/projectrekor/rekor-cli/cmd"
func main() {
cmd.Execute()
......
......@@ -3,12 +3,12 @@
DB="test"
USER="test"
PASS="zaphod"
ROOTPASS="p6ssw0rd"
ROOTPASS=""
echo -e "Creating $DB database and $USER user account"
mysql -uroot -p$ROOTPASS<<MYSQL_SCRIPT
mysql <<MYSQL_SCRIPT
DROP DATABASE IF EXISTS $DB;
CREATE DATABASE $DB;
CREATE USER IF NOT EXISTS '$USER'@'localhost' IDENTIFIED BY '$PASS';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment