mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-25 17:10:28 +00:00
ad53429cf1
The following build tags are available: - "nogcs", disable Google Cloud Storage backend - "nos3", disable S3 Compabible Object Storage backends - "nobolt", disable Bolt data provider - "nomysql", disable MySQL data provider - "nopgsql", disable PostgreSQL data provider - "nosqlite", disable SQLite data provider - "noportable", disable portable mode
9 lines
124 B
Go
9 lines
124 B
Go
// +build noportable
|
|
|
|
package cmd
|
|
|
|
import "github.com/drakkan/sftpgo/utils"
|
|
|
|
func init() {
|
|
utils.AddFeature("-portable")
|
|
}
|