forked from rakyll/drive
-
Notifications
You must be signed in to change notification settings - Fork 427
Ubuntu snap for drive #881
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Dedsec1
wants to merge
21
commits into
odeke-em:master
Choose a base branch
from
Dedsec1:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
9187c30
Create .pkgr.yaml
Dedsec1 4d218fc
Create .godir
Dedsec1 f4e5751
Update .godir
Dedsec1 6e880ef
Update .godir
Dedsec1 9952853
Update .pkgr.yaml
Dedsec1 d840787
Update .pkgr.yaml
Dedsec1 acb2e02
Update .godir
Dedsec1 c939821
Update .godir
Dedsec1 ae339eb
Update .godir
Dedsec1 bc275c9
Delete .godir
Dedsec1 bf304dd
Update .pkgr.yaml
Dedsec1 da64b7d
Update .pkgr.yaml
Dedsec1 acb8ce7
Update .pkgr.yaml
Dedsec1 9ef7112
Create snapcraft.yaml
Dedsec1 dc33036
Delete .pkgr.yaml
Dedsec1 e15167a
Create .pkgr.yaml
Dedsec1 142be18
Create .godir
Dedsec1 5af8fa5
Update snapcraft.yaml
Dedsec1 d568e64
Update snapcraft.yaml
Dedsec1 e018cb7
Delete .godir
Dedsec1 45b842a
Delete .pkgr.yaml
Dedsec1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| name: drive | ||
| summary: Google Drive client for the commandline | ||
| version: current | ||
| description: | ||
| drive is a tiny program to pull or push Google Drive files. | ||
| confinement: strict | ||
| grade: stable | ||
|
|
||
| apps: | ||
| drive: | ||
| command: bin/drive | ||
| plugs: [home, network, network-bind] | ||
|
|
||
| parts: | ||
| drive: | ||
| plugin: go | ||
| source: https://github.com/odeke-em/drive | ||
| source-type: git | ||
| go-importpath: github.com/odeke-em/drive | ||
| build-packages: [gcc, libgudev-1.0-dev] | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi!
Great work!
Just a suggestion. The version field should be a string, so you should put it in quotes.
Also, if you're tracking the master branch in github, it might be better to set:
version: 'master'What do you think?