0
curl -L https://packagecloud.io/golang-migrate/migrate/gpgkey | apt-key add -
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
E: This command can only be used by root.
  0     0    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0
100  3954  100  3954    0     0   2478      0  0:00:01  0:00:01 --:--:--  2478
curl: (23) Failed writing body
muru
  • 72,889

1 Answers1

2

You are getting the following error:

E: This command can only be used by root.

You should run the command as root. Try:

curl -L https://packagecloud.io/golang-migrate/migrate/gpgkey | sudo apt-key add -
C-nan
  • 121